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

Unified Diff: Source/core/inspector/InjectedScriptNative.h

Issue 1107393003: Replace Handle with Local in Source/* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 | « Source/core/frame/DOMWindow.cpp ('k') | Source/core/inspector/InjectedScriptNative.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InjectedScriptNative.h
diff --git a/Source/core/inspector/InjectedScriptNative.h b/Source/core/inspector/InjectedScriptNative.h
index b3693efc7d6244cf9b3dade0455f80f5444d94bb..4c020ae2cca0b604f6c2c8628e59514f1e99243d 100644
--- a/Source/core/inspector/InjectedScriptNative.h
+++ b/Source/core/inspector/InjectedScriptNative.h
@@ -18,8 +18,8 @@ public:
explicit InjectedScriptNative(v8::Isolate*);
~InjectedScriptNative();
- void setOnInjectedScriptHost(v8::Handle<v8::Object>);
- static InjectedScriptNative* fromInjectedScriptHost(v8::Handle<v8::Object>);
+ void setOnInjectedScriptHost(v8::Local<v8::Object>);
+ static InjectedScriptNative* fromInjectedScriptHost(v8::Local<v8::Object>);
int bind(v8::Local<v8::Value>, const String& groupName);
void unbind(int id);
« no previous file with comments | « Source/core/frame/DOMWindow.cpp ('k') | Source/core/inspector/InjectedScriptNative.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698