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

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

Issue 275026: Move scripting / v8 related methods out of WebKit.h, second try (Closed)
Patch Set: rebase Created 11 years, 2 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/WebScriptController.h ('k') | webkit/api/src/WebScriptController.cpp » ('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 877e5c9c75ca38d345bf1d8d8c1284ed92ea8321..43937e54cff1a460d270ad8b5a89697d2a104085 100644
--- a/webkit/api/src/WebKit.cpp
+++ b/webkit/api/src/WebKit.cpp
@@ -39,8 +39,6 @@
#include "FrameLoader.h"
#include "Page.h"
#include "TextEncoding.h"
-#include "V8Binding.h"
-#include "V8Proxy.h"
#include "WorkerContextExecutionProxy.h"
#include <wtf/Assertions.h>
#include <wtf/Threading.h>
@@ -107,27 +105,6 @@ void registerURLSchemeAsNoAccess(const WebString& scheme)
WebCore::SecurityOrigin::registerURLSchemeAsNoAccess(scheme);
}
-void registerExtension(v8::Extension* extension)
-{
- WebCore::V8Proxy::registerExtension(extension, WebString());
-}
-
-void registerExtension(v8::Extension* extension,
- const WebString& schemeRestriction)
-{
- WebCore::V8Proxy::registerExtension(extension, schemeRestriction);
-}
-
-void registerExtension(v8::Extension* extension, int extensionGroup)
-{
- WebCore::V8Proxy::registerExtension(extension, extensionGroup);
-}
-
-void flushConsoleMessages()
-{
- WebCore::V8Proxy::processConsoleMessages();
-}
-
void enableMediaPlayer()
{
#if ENABLE(VIDEO)
@@ -152,11 +129,6 @@ bool databasesEnabled()
return s_databasesEnabled;
}
-void enableV8SingleThreadMode()
-{
- WebCore::enableStringImplCache();
-}
-
void whiteListAccessFromOrigin(const WebURL& sourceOrigin,
const WebString& destinationProtocol,
const WebString& destinationHost,
« no previous file with comments | « webkit/api/public/WebScriptController.h ('k') | webkit/api/src/WebScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698