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. |