| Index: Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
|
| diff --git a/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h b/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
|
| index f7f8c9e4e3caf668870610833338752daa741c77..fc333be10cc134550617b66214a4d2e36f30a981 100644
|
| --- a/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
|
| +++ b/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
|
| @@ -15,8 +15,8 @@ class InjectedScriptHost;
|
|
|
| class V8InjectedScriptHost {
|
| public:
|
| - static v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::FunctionTemplate> constructorTemplate, PassRefPtrWillBeRawPtr<InjectedScriptHost>);
|
| - static InjectedScriptHost* toImpl(v8::Local<v8::Object>);
|
| + static v8::Local<v8::Object> wrap(v8::Local<v8::FunctionTemplate> constructorTemplate, v8::Local<v8::Context>, PassRefPtrWillBeRawPtr<InjectedScriptHost>);
|
| + static InjectedScriptHost* unwrap(v8::Local<v8::Object>);
|
| static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*);
|
|
|
| static void clearConsoleMessagesCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| @@ -45,9 +45,6 @@ public:
|
| static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| static void objectForIdCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| static void idToObjectGroupNameCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| -
|
| -private:
|
| - static v8::Local<v8::String> hiddenPropertyName(v8::Isolate*);
|
| };
|
|
|
| } // namespace blink
|
|
|