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

Side by Side Diff: gin/context_holder.cc

Issue 62333018: Implement Asynchronous Module Definition API for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar testing Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "gin/context_holder.h"
6
7 #include <assert.h>
8 #include "gin/per_context_data.h"
9
10 namespace gin {
11
12 ContextHolder::ContextHolder(v8::Isolate* isolate)
13 : isolate_(isolate) {
14 }
15
16 ContextHolder::~ContextHolder() {
17 v8::HandleScope handle_scope(isolate());
18 v8::Handle<v8::Context> context = this->context();
19
20 PerContextData* data = PerContextData::From(context);
21 data->Detach(context);
22 delete data;
23
24 // TODO(abarth): Figure out how to set kResetInDestructor to true.
25 context_.Reset();
26 }
27
28 void ContextHolder::SetContext(v8::Handle<v8::Context> context) {
29 assert(context_.IsEmpty());
30 context_.Reset(isolate_, context);
31 new PerContextData(context); // Deleted in ~ContextHolder.
32 }
33
34 } // namespace gin
OLDNEW
« no previous file with comments | « gin/context_holder.h ('k') | gin/converter.h » ('j') | gin/modules/module_registry.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698