Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3390)

Unified Diff: webkit/api/src/WebKit.cpp

Issue 159542: Add a WebKit API that registers a V8 extension to be loaded into content (Closed)
Patch Set: final Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/api/public/WebKit.h ('k') | webkit/glue/webframe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebKit.cpp
diff --git a/webkit/api/src/WebKit.cpp b/webkit/api/src/WebKit.cpp
index e88a7a825641d2f4af3194c4d440c9878649a648..f4c327cd4d726854ce345fb0393ef703abc9072b 100644
--- a/webkit/api/src/WebKit.cpp
+++ b/webkit/api/src/WebKit.cpp
@@ -107,6 +107,11 @@ void registerExtension(v8::Extension* extension,
WebCore::V8Proxy::registerExtension(extension, schemeRestriction);
}
+void registerExtension(v8::Extension* extension, int extensionGroup)
+{
+ WebCore::V8Proxy::registerExtension(extension, extensionGroup);
+}
+
void flushConsoleMessages()
{
WebCore::V8Proxy::processConsoleMessages();
« no previous file with comments | « webkit/api/public/WebKit.h ('k') | webkit/glue/webframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698