Title: [106787] trunk/Source/WebCore
Revision
106787
Author
commit-qu...@webkit.org
Date
2012-02-06 01:27:50 -0800 (Mon, 06 Feb 2012)

Log Message

Web Inspector: Fix CallArgument type in Inspector.json
https://bugs.webkit.org/show_bug.cgi?id=77839

Patch by Peter Rybin <peter.ry...@gmail.com> on 2012-02-06
Reviewed by Yury Semikhatsky.

Protocol description is fixed: field type is changed. No changes to
program code are necessary.

* inspector/Inspector-0.1.json:
* inspector/Inspector-1.0.json:
* inspector/Inspector.json:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106786 => 106787)


--- trunk/Source/WebCore/ChangeLog	2012-02-06 09:23:08 UTC (rev 106786)
+++ trunk/Source/WebCore/ChangeLog	2012-02-06 09:27:50 UTC (rev 106787)
@@ -1,3 +1,17 @@
+2012-02-06  Peter Rybin  <peter.ry...@gmail.com>
+
+        Web Inspector: Fix CallArgument type in Inspector.json
+        https://bugs.webkit.org/show_bug.cgi?id=77839
+
+        Reviewed by Yury Semikhatsky.
+
+        Protocol description is fixed: field type is changed. No changes to
+        program code are necessary.
+
+        * inspector/Inspector-0.1.json:
+        * inspector/Inspector-1.0.json:
+        * inspector/Inspector.json:
+
 2012-02-05  Gavin Barraclough  <barraclo...@apple.com>
 
         Remove JSObject defineGetter/defineSetter lookupGetter/lookupSetter

Modified: trunk/Source/WebCore/inspector/Inspector-0.1.json (106786 => 106787)


--- trunk/Source/WebCore/inspector/Inspector-0.1.json	2012-02-06 09:23:08 UTC (rev 106786)
+++ trunk/Source/WebCore/inspector/Inspector-0.1.json	2012-02-06 09:27:50 UTC (rev 106787)
@@ -279,7 +279,7 @@
                 "description": "Represents function call argument. Either remote object id <code>objectId</code> or primitive <code>value</code> or neither of (for undefined) them should be specified.",
                 "properties": [
                     { "name": "value", "type": "any", "optional": true, "description": "Primitive value." },
-                    { "name": "objectId", "$ref": "RemoteObject", "optional": true, "description": "Remote object handle." }
+                    { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Remote object handle." }
                 ]
             }
         ],

Modified: trunk/Source/WebCore/inspector/Inspector-1.0.json (106786 => 106787)


--- trunk/Source/WebCore/inspector/Inspector-1.0.json	2012-02-06 09:23:08 UTC (rev 106786)
+++ trunk/Source/WebCore/inspector/Inspector-1.0.json	2012-02-06 09:27:50 UTC (rev 106787)
@@ -390,7 +390,7 @@
                 "description": "Represents function call argument. Either remote object id <code>objectId</code> or primitive <code>value</code> or neither of (for undefined) them should be specified.",
                 "properties": [
                     { "name": "value", "type": "any", "optional": true, "description": "Primitive value." },
-                    { "name": "objectId", "$ref": "RemoteObject", "optional": true, "description": "Remote object handle." }
+                    { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Remote object handle." }
                 ]
             }
         ],

Modified: trunk/Source/WebCore/inspector/Inspector.json (106786 => 106787)


--- trunk/Source/WebCore/inspector/Inspector.json	2012-02-06 09:23:08 UTC (rev 106786)
+++ trunk/Source/WebCore/inspector/Inspector.json	2012-02-06 09:27:50 UTC (rev 106787)
@@ -391,7 +391,7 @@
                 "description": "Represents function call argument. Either remote object id <code>objectId</code> or primitive <code>value</code> or neither of (for undefined) them should be specified.",
                 "properties": [
                     { "name": "value", "type": "any", "optional": true, "description": "Primitive value." },
-                    { "name": "objectId", "$ref": "RemoteObject", "optional": true, "description": "Remote object handle." }
+                    { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Remote object handle." }
                 ]
             }
         ],
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to