Title: [124932] trunk/Source/WebKit/chromium
Revision
124932
Author
[email protected]
Date
2012-08-07 15:58:34 -0700 (Tue, 07 Aug 2012)

Log Message

[Chromium] Clean up WebScriptController.h comments
https://bugs.webkit.org/show_bug.cgi?id=93399

Reviewed by Adam Barth.

Remove references to overloaded WebScriptController::registerExtension
variants. They were removed in r68666.

* public/WebScriptController.h:
(WebScriptController):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (124931 => 124932)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-08-07 22:56:02 UTC (rev 124931)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-08-07 22:58:34 UTC (rev 124932)
@@ -1,3 +1,16 @@
+2012-08-07  Mihai Parparita  <[email protected]>
+
+        [Chromium] Clean up WebScriptController.h comments
+        https://bugs.webkit.org/show_bug.cgi?id=93399
+
+        Reviewed by Adam Barth.
+
+        Remove references to overloaded WebScriptController::registerExtension
+        variants. They were removed in r68666.
+
+        * public/WebScriptController.h:
+        (WebScriptController):
+
 2012-08-07  Kentaro Hara  <[email protected]>
 
         [V8] Remove #include Frame.h from V8Binding.h

Modified: trunk/Source/WebKit/chromium/public/WebScriptController.h (124931 => 124932)


--- trunk/Source/WebKit/chromium/public/WebScriptController.h	2012-08-07 22:56:02 UTC (rev 124931)
+++ trunk/Source/WebKit/chromium/public/WebScriptController.h	2012-08-07 22:58:34 UTC (rev 124932)
@@ -39,18 +39,11 @@
 
 namespace WebKit {
 
-class WebString;
-
 class WebScriptController {
 public:
-    // Registers a v8 extension to be available on webpages. The three forms
-    // offer various restrictions on what types of contexts the extension is
-    // loaded into. If a scheme is provided, only pages whose URL has the given
-    // scheme will match. If extensionGroup is provided, the extension will only
-    // be loaded into scripts run via WebFrame::ExecuteInNewWorld with the
-    // matching group.
-    // Will only affect v8 contexts initialized after this call. Takes ownership
-    // of the v8::Extension object passed.
+    // Registers a v8 extension to be available on webpages. Will only affect
+    // v8 contexts initialized after this call. Takes ownership of the
+    // v8::Extension object passed.
     WEBKIT_EXPORT static void registerExtension(v8::Extension*);
 
     // Enables special settings which are only applicable if V8 is executed
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to