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

Side by Side Diff: gin/context_holder.cc

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, 7 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 unified diff | Download patch
« no previous file with comments | « gin/array_buffer.cc ('k') | gin/converter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gin/public/context_holder.h" 5 #include "gin/public/context_holder.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "gin/per_context_data.h" 8 #include "gin/per_context_data.h"
9 9
10 namespace gin { 10 namespace gin {
11 11
12 ContextHolder::ContextHolder(v8::Isolate* isolate) 12 ContextHolder::ContextHolder(v8::Isolate* isolate)
13 : isolate_(isolate) { 13 : isolate_(isolate) {
14 } 14 }
15 15
16 ContextHolder::~ContextHolder() { 16 ContextHolder::~ContextHolder() {
17 // PerContextData needs to be destroyed before the context. 17 // PerContextData needs to be destroyed before the context.
18 data_.reset(); 18 data_.reset();
19 } 19 }
20 20
21 void ContextHolder::SetContext(v8::Handle<v8::Context> context) { 21 void ContextHolder::SetContext(v8::Local<v8::Context> context) {
22 DCHECK(context_.IsEmpty()); 22 DCHECK(context_.IsEmpty());
23 context_.Reset(isolate_, context); 23 context_.Reset(isolate_, context);
24 data_.reset(new PerContextData(this, context)); 24 data_.reset(new PerContextData(this, context));
25 } 25 }
26 26
27 } // namespace gin 27 } // namespace gin
OLDNEW
« no previous file with comments | « gin/array_buffer.cc ('k') | gin/converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698