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

Unified Diff: Source/bindings/core/v8/inspector/V8InjectedScriptHost.h

Issue 1165453007: Reland "DevTools: extract common inspector bindigns code into InspectorWrapper" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
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
« no previous file with comments | « Source/bindings/core/v8/inspector/InspectorWrapper.cpp ('k') | Source/bindings/core/v8/inspector/V8InjectedScriptHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698