Title: [143904] trunk/Source/WebCore
Revision
143904
Author
loi...@chromium.org
Date
2013-02-25 04:31:18 -0800 (Mon, 25 Feb 2013)

Log Message

Unreviewed. Fix of closure type annotations.

* inspector/front-end/UISourceCode.js:
* inspector/front-end/utilities.js:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143903 => 143904)


--- trunk/Source/WebCore/ChangeLog	2013-02-25 12:26:14 UTC (rev 143903)
+++ trunk/Source/WebCore/ChangeLog	2013-02-25 12:31:18 UTC (rev 143904)
@@ -1,3 +1,10 @@
+2013-02-25  Ilya Tikhonovsky  <loi...@chromium.org>
+
+        Unreviewed. Fix of closure type annotations.
+
+        * inspector/front-end/UISourceCode.js:
+        * inspector/front-end/utilities.js:
+
 2013-02-25  Eugene Klyuchnikov  <eus...@chromium.org>
 
         Web Inspector: [Network] Timeline bars and dividers are positioned in different coordinate systems.

Modified: trunk/Source/WebCore/inspector/front-end/UISourceCode.js (143903 => 143904)


--- trunk/Source/WebCore/inspector/front-end/UISourceCode.js	2013-02-25 12:26:14 UTC (rev 143903)
+++ trunk/Source/WebCore/inspector/front-end/UISourceCode.js	2013-02-25 12:31:18 UTC (rev 143904)
@@ -485,7 +485,7 @@
     },
 
     /**
-     * @param {WebInspector.LiveLocation} liveLocation
+     * @param {!WebInspector.LiveLocation} liveLocation
      */
     addLiveLocation: function(liveLocation)
     {
@@ -493,7 +493,7 @@
     },
 
     /**
-     * @param {WebInspector.LiveLocation} liveLocation
+     * @param {!WebInspector.LiveLocation} liveLocation
      */
     removeLiveLocation: function(liveLocation)
     {

Modified: trunk/Source/WebCore/inspector/front-end/utilities.js (143903 => 143904)


--- trunk/Source/WebCore/inspector/front-end/utilities.js	2013-02-25 12:26:14 UTC (rev 143903)
+++ trunk/Source/WebCore/inspector/front-end/utilities.js	2013-02-25 12:31:18 UTC (rev 143904)
@@ -763,7 +763,7 @@
     },
 
     /**
-     * @param {Object} item
+     * @param {!Object} item
      * @return {?Object}
      */
     hasItem: function(item)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to