Title: [99575] trunk/Source/WebCore
Revision
99575
Author
ca...@chromium.org
Date
2011-11-08 09:06:33 -0800 (Tue, 08 Nov 2011)

Log Message

Web Inspector: [Extension API][Chromium] injected extension API needs to return an object
https://bugs.webkit.org/show_bug.cgi?id=71822

Reviewed by Pavel Feldman.

* inspector/front-end/ExtensionAPI.js:
(buildExtensionAPIInjectedScript):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (99574 => 99575)


--- trunk/Source/WebCore/ChangeLog	2011-11-08 16:46:15 UTC (rev 99574)
+++ trunk/Source/WebCore/ChangeLog	2011-11-08 17:06:33 UTC (rev 99575)
@@ -1,3 +1,13 @@
+2011-11-08  Andrey Kosyakov  <ca...@chromium.org>
+
+        Web Inspector: [Extension API][Chromium] injected extension API needs to return an object
+        https://bugs.webkit.org/show_bug.cgi?id=71822
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/ExtensionAPI.js:
+        (buildExtensionAPIInjectedScript):
+
 2011-11-08  Andreas Kling  <kl...@webkit.org>
 
         CSSImageValue: Devirtualize cachedImage(CachedResourceLoader*).

Modified: trunk/Source/WebCore/inspector/front-end/ExtensionAPI.js (99574 => 99575)


--- trunk/Source/WebCore/inspector/front-end/ExtensionAPI.js	2011-11-08 16:46:15 UTC (rev 99574)
+++ trunk/Source/WebCore/inspector/front-end/ExtensionAPI.js	2011-11-08 17:06:33 UTC (rev 99575)
@@ -722,6 +722,7 @@
         defineCommonExtensionSymbols.toString() + ";" +
         injectedExtensionAPI.toString() + ";" +
         "injectedExtensionAPI(injectedScriptId);" +
-        (platformAPI || "") +
+        (platformAPI || "") + ";" +
+        "return {};" +
         "})";
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to