Title: [142231] trunk/Source/WebCore
Revision
142231
Author
[email protected]
Date
2013-02-07 22:42:00 -0800 (Thu, 07 Feb 2013)

Log Message

Web Inspector: Fix front-end compilation warnings related to WebInspector.SidebarPane
https://bugs.webkit.org/show_bug.cgi?id=109259

Patch by Vladislav Kaznacheev <[email protected]> on 2013-02-07
Reviewed by Vsevolod Vlasov.

* inspector/front-end/DOMBreakpointsSidebarPane.js:
(WebInspector.DOMBreakpointsSidebarPane.Proxy):
* inspector/front-end/SidebarPane.js:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142230 => 142231)


--- trunk/Source/WebCore/ChangeLog	2013-02-08 06:41:43 UTC (rev 142230)
+++ trunk/Source/WebCore/ChangeLog	2013-02-08 06:42:00 UTC (rev 142231)
@@ -1,3 +1,14 @@
+2013-02-07  Vladislav Kaznacheev  <[email protected]>
+
+        Web Inspector: Fix front-end compilation warnings related to WebInspector.SidebarPane
+        https://bugs.webkit.org/show_bug.cgi?id=109259
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/front-end/DOMBreakpointsSidebarPane.js:
+        (WebInspector.DOMBreakpointsSidebarPane.Proxy):
+        * inspector/front-end/SidebarPane.js:
+
 2013-02-07  Kentaro Hara  <[email protected]>
 
         [V8] enum V8HiddenPropertyCreationType is not used

Modified: trunk/Source/WebCore/inspector/front-end/DOMBreakpointsSidebarPane.js (142230 => 142231)


--- trunk/Source/WebCore/inspector/front-end/DOMBreakpointsSidebarPane.js	2013-02-08 06:41:43 UTC (rev 142230)
+++ trunk/Source/WebCore/inspector/front-end/DOMBreakpointsSidebarPane.js	2013-02-08 06:42:00 UTC (rev 142231)
@@ -354,7 +354,7 @@
  */
 WebInspector.DOMBreakpointsSidebarPane.Proxy = function(pane, panel)
 {
-    WebInspector.View._assert(!pane.titleElement.firstChild);
+    WebInspector.View._assert(!pane.titleElement.firstChild, "Cannot create proxy for a sidebar pane with a toolbar");
 
     WebInspector.SidebarPane.call(this, pane.title());
 

Modified: trunk/Source/WebCore/inspector/front-end/SidebarPane.js (142230 => 142231)


--- trunk/Source/WebCore/inspector/front-end/SidebarPane.js	2013-02-08 06:41:43 UTC (rev 142230)
+++ trunk/Source/WebCore/inspector/front-end/SidebarPane.js	2013-02-08 06:42:00 UTC (rev 142231)
@@ -85,7 +85,6 @@
 
     /**
      * @param {function()} callback
-     * @return {boolean}
      */
     _setExpandCallback: function(callback)
     {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to