blob: 30430873bb5737816e965930946796e4488dd87d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gin/function_template.h"
#include "gin/per_isolate_data.h"
namespace gin {
INIT_WRAPPABLE(internal::CallbackHolderBase);
void InitFunctionTemplates(PerIsolateData* isolate_data) {
if (!isolate_data->GetObjectTemplate(
&internal::CallbackHolderBase::kWrapperInfo).IsEmpty()) {
return;
}
v8::Handle<v8::ObjectTemplate> templ(
v8::ObjectTemplate::New(isolate_data->isolate()));
templ->SetInternalFieldCount(kNumberOfInternalFields);
isolate_data->SetObjectTemplate(&internal::CallbackHolderBase::kWrapperInfo,
templ);
}
} // namespace gin
|