OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 v8::Local<v8::FunctionTemplate> result = data->privateTemplateIfExists(curre
ntWorldType, &privateTemplateUniqueKey); | 112 v8::Local<v8::FunctionTemplate> result = data->privateTemplateIfExists(curre
ntWorldType, &privateTemplateUniqueKey); |
113 if (!result.IsEmpty()) | 113 if (!result.IsEmpty()) |
114 return result; | 114 return result; |
115 | 115 |
116 TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate"); | 116 TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate"); |
117 v8::EscapableHandleScope scope(isolate); | 117 v8::EscapableHandleScope scope(isolate); |
118 result = v8::FunctionTemplate::New(isolate, V8TestInterfaceNamedConstructor2
ConstructorCallback); | 118 result = v8::FunctionTemplate::New(isolate, V8TestInterfaceNamedConstructor2
ConstructorCallback); |
119 | 119 |
120 v8::Local<v8::ObjectTemplate> instanceTemplate = result->InstanceTemplate(); | 120 v8::Local<v8::ObjectTemplate> instanceTemplate = result->InstanceTemplate(); |
121 instanceTemplate->SetInternalFieldCount(V8TestInterfaceNamedConstructor2::in
ternalFieldCount); | 121 instanceTemplate->SetInternalFieldCount(V8TestInterfaceNamedConstructor2::in
ternalFieldCount); |
122 result->SetClassName(v8::String::NewFromUtf8(isolate, "TestInterfaceNamedCon
structor2", v8::String::kInternalizedString)); | 122 result->SetClassName(v8AtomicString(isolate, "TestInterfaceNamedConstructor2
")); |
123 result->Inherit(V8TestInterfaceNamedConstructor2::domTemplate(isolate, curre
ntWorldType)); | 123 result->Inherit(V8TestInterfaceNamedConstructor2::domTemplate(isolate, curre
ntWorldType)); |
124 data->setPrivateTemplate(currentWorldType, &privateTemplateUniqueKey, result
); | 124 data->setPrivateTemplate(currentWorldType, &privateTemplateUniqueKey, result
); |
125 | 125 |
126 return scope.Escape(result); | 126 return scope.Escape(result); |
127 } | 127 } |
128 | 128 |
129 static v8::Handle<v8::FunctionTemplate> ConfigureV8TestInterfaceNamedConstructor
2Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolat
e, WrapperWorldType currentWorldType) | 129 static v8::Handle<v8::FunctionTemplate> ConfigureV8TestInterfaceNamedConstructor
2Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolat
e, WrapperWorldType currentWorldType) |
130 { | 130 { |
131 functionTemplate->ReadOnlyPrototype(); | 131 functionTemplate->ReadOnlyPrototype(); |
132 | 132 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 fromInternalPointer(object)->deref(); | 196 fromInternalPointer(object)->deref(); |
197 } | 197 } |
198 | 198 |
199 template<> | 199 template<> |
200 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) | 200 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) |
201 { | 201 { |
202 return toV8(impl, creationContext, isolate); | 202 return toV8(impl, creationContext, isolate); |
203 } | 203 } |
204 | 204 |
205 } // namespace WebCore | 205 } // namespace WebCore |
OLD | NEW |