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

Unified Diff: gin/per_context_data.h

Issue 1112923003: Replace Handle<> with Local in remaining gin/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « gin/object_template_builder.cc ('k') | gin/per_context_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/per_context_data.h
diff --git a/gin/per_context_data.h b/gin/per_context_data.h
index de8f1793ef6ccc9e962c44cb2e15ebd615cd1480..976ef51bd3a0c13b9532b1f5bb40d527f4fa7ab4 100644
--- a/gin/per_context_data.h
+++ b/gin/per_context_data.h
@@ -23,11 +23,11 @@ class Runner;
class GIN_EXPORT PerContextData : public base::SupportsUserData {
public:
PerContextData(ContextHolder* context_holder,
- v8::Handle<v8::Context> context);
+ v8::Local<v8::Context> context);
~PerContextData() override;
// Can return NULL after the ContextHolder has detached from context.
- static PerContextData* From(v8::Handle<v8::Context> context);
+ static PerContextData* From(v8::Local<v8::Context> context);
// The Runner associated with this context. To execute script in this context,
// please use the appropriate API on Runner.
« no previous file with comments | « gin/object_template_builder.cc ('k') | gin/per_context_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698