summaryrefslogtreecommitdiffstats
path: root/gin/isolate_holder.cc
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-26 21:02:51 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-26 21:02:51 +0000
commit81f8b91b2f2213ad40d5bd4ecbe096550a2eedd6 (patch)
tree8527f82a4bb22c71187c73e4bca60c8c414957e3 /gin/isolate_holder.cc
parent615bca519a93ba2d550455189802584cae4fafb5 (diff)
downloadchromium_src-81f8b91b2f2213ad40d5bd4ecbe096550a2eedd6.zip
chromium_src-81f8b91b2f2213ad40d5bd4ecbe096550a2eedd6.tar.gz
chromium_src-81f8b91b2f2213ad40d5bd4ecbe096550a2eedd6.tar.bz2
Implement support in function_template.h for return types.
Review URL: https://codereview.chromium.org/86783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gin/isolate_holder.cc')
-rw-r--r--gin/isolate_holder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gin/isolate_holder.cc b/gin/isolate_holder.cc
index 9e3109d..b5501b6 100644
--- a/gin/isolate_holder.cc
+++ b/gin/isolate_holder.cc
@@ -53,7 +53,7 @@ IsolateHolder::IsolateHolder()
v8::Isolate::Scope isolate_scope(isolate_);
v8::HandleScope handle_scope(isolate_);
isolate_data_.reset(new PerIsolateData(isolate_));
- CallbackHolderBase::EnsureRegistered(isolate_data_.get());
+ InitFunctionTemplates(isolate_data_.get());
}
IsolateHolder::IsolateHolder(v8::Isolate* isolate)