Title: [199390] trunk/Source/WebInspectorUI
Revision
199390
Author
[email protected]
Date
2016-04-12 14:35:33 -0700 (Tue, 12 Apr 2016)

Log Message

Web Inspector: Show the normal Native icon for all Internal objects in Heap Snapshots
https://bugs.webkit.org/show_bug.cgi?id=156513

Patch by Joseph Pecoraro <[email protected]> on 2016-04-12
Reviewed by Timothy Hatcher.

* UserInterface/Views/HeapSnapshotClusterContentView.js:
(WebInspector.HeapSnapshotClusterContentView.iconStyleClassNameForClassName):
Show the native icon for internal objects.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (199389 => 199390)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-04-12 21:10:27 UTC (rev 199389)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-04-12 21:35:33 UTC (rev 199390)
@@ -1,5 +1,16 @@
 2016-04-12  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Show the normal Native icon for all Internal objects in Heap Snapshots
+        https://bugs.webkit.org/show_bug.cgi?id=156513
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/HeapSnapshotClusterContentView.js:
+        (WebInspector.HeapSnapshotClusterContentView.iconStyleClassNameForClassName):
+        Show the native icon for internal objects.
+
+2016-04-12  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Keyboard shortcut for "Inspect Element" only works when Web Inspector is open.
         https://bugs.webkit.org/show_bug.cgi?id=111193
         <rdar://problem/13325889>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/HeapSnapshotClusterContentView.js (199389 => 199390)


--- trunk/Source/WebInspectorUI/UserInterface/Views/HeapSnapshotClusterContentView.js	2016-04-12 21:10:27 UTC (rev 199389)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/HeapSnapshotClusterContentView.js	2016-04-12 21:35:33 UTC (rev 199390)
@@ -58,7 +58,7 @@
     static iconStyleClassNameForClassName(className, internal)
     {
         if (internal)
-            return "unknown";
+            return "native";
 
         switch (className) {
         case "Object":
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to