| Index: webkit/api/public/WebKit.h
|
| diff --git a/webkit/api/public/WebKit.h b/webkit/api/public/WebKit.h
|
| index 93c86257e05b45cb8c61d172aa5ca368b01f0804..d6d3e1116f35176ff9cab5fd28c20b7c5acbd446 100644
|
| --- a/webkit/api/public/WebKit.h
|
| +++ b/webkit/api/public/WebKit.h
|
| @@ -34,10 +34,6 @@
|
| #include "WebCommon.h"
|
| #include "WebURL.h"
|
|
|
| -namespace v8 {
|
| - class Extension;
|
| -}
|
| -
|
| namespace WebKit {
|
| class WebKitClient;
|
| class WebString;
|
| @@ -70,28 +66,6 @@ namespace WebKit {
|
| // any other URL scheme.
|
| WEBKIT_API void registerURLSchemeAsNoAccess(const WebString&);
|
|
|
| - // 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.
|
| - WEBKIT_API void registerExtension(v8::Extension*);
|
| - WEBKIT_API void registerExtension(v8::Extension*,
|
| - const WebString& schemeRestriction);
|
| - WEBKIT_API void registerExtension(v8::Extension*, int extensionGroup);
|
| -
|
| - // Enables special settings which are only applicable if V8 is executed
|
| - // in the single thread which must be the main thread.
|
| - // FIXME: make a try to dynamically detect when this condition is broken
|
| - // and automatically switch off single thread mode.
|
| - WEBKIT_API void enableV8SingleThreadMode();
|
| -
|
| - // Process any pending JavaScript console messages.
|
| - WEBKIT_API void flushConsoleMessages();
|
| -
|
| // Enables HTML5 media support.
|
| WEBKIT_API void enableMediaPlayer();
|
|
|
|
|