Title: [106252] trunk/Source/WebCore
Revision
106252
Author
pfeld...@chromium.org
Date
2012-01-30 09:53:53 -0800 (Mon, 30 Jan 2012)

Log Message

Not reviewed: follow up to r105625, use proper event categoty in inspector frontend.

* inspector/front-end/BreakpointsSidebarPane.js:
(WebInspector.EventListenerBreakpointsSidebarPane):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106251 => 106252)


--- trunk/Source/WebCore/ChangeLog	2012-01-30 17:31:52 UTC (rev 106251)
+++ trunk/Source/WebCore/ChangeLog	2012-01-30 17:53:53 UTC (rev 106252)
@@ -1,3 +1,10 @@
+2012-01-30  Pavel Feldman  <pfeld...@google.com>
+
+        Not reviewed: follow up to r105625, use proper event categoty in inspector frontend.
+
+        * inspector/front-end/BreakpointsSidebarPane.js:
+        (WebInspector.EventListenerBreakpointsSidebarPane):
+
 2012-01-30  Parag Radke  <nrq...@motorola.com>
 
         REGRESSION (r82580): Reproducible crash in CSSPrimitiveValue::computeLengthDouble

Modified: trunk/Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js (106251 => 106252)


--- trunk/Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js	2012-01-30 17:31:52 UTC (rev 106251)
+++ trunk/Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js	2012-01-30 17:53:53 UTC (rev 106252)
@@ -472,7 +472,7 @@
     this._createCategory(WebInspector.UIString("DOM Mutation"), "listener", ["DOMActivate", "DOMFocusIn", "DOMFocusOut", "DOMAttrModified", "DOMCharacterDataModified", "DOMNodeInserted", "DOMNodeInsertedIntoDocument", "DOMNodeRemoved", "DOMNodeRemovedFromDocument", "DOMSubtreeModified", "DOMContentLoaded"]);
     this._createCategory(WebInspector.UIString("Device"), "listener", ["deviceorientation", "devicemotion"]);
     this._createCategory(WebInspector.UIString("Timer"), "instrumentation", ["setTimer", "clearTimer", "timerFired"]);
-    this._createCategory(WebInspector.UIString("Touch"), "instrumentation", ["touchstart", "touchmove", "touchend", "touchcancel"]);
+    this._createCategory(WebInspector.UIString("Touch"), "listener", ["touchstart", "touchmove", "touchend", "touchcancel"]);
 
     this._restoreBreakpoints();
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to