| Index: Source/bindings/templates/interface.cpp
|
| diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp
|
| deleted file mode 100644
|
| index 88058e61d3a523442f21377014dfd9626a6c6211..0000000000000000000000000000000000000000
|
| --- a/Source/bindings/templates/interface.cpp
|
| +++ /dev/null
|
| @@ -1,166 +0,0 @@
|
| -/*
|
| - This file is part of the Blink open source project.
|
| - This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY!
|
| -
|
| - This library is free software; you can redistribute it and/or
|
| - modify it under the terms of the GNU Library General Public
|
| - License as published by the Free Software Foundation; either
|
| - version 2 of the License, or (at your option) any later version.
|
| -
|
| - This library is distributed in the hope that it will be useful,
|
| - but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
| - Library General Public License for more details.
|
| -
|
| - You should have received a copy of the GNU Library General Public License
|
| - along with this library; see the file COPYING.LIB. If not, write to
|
| - the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
| - Boston, MA 02111-1307, USA.
|
| -*/
|
| -
|
| -#include "config.h"
|
| -{% if conditional_string %}
|
| -#if {{conditional_string}}
|
| -{% endif %}
|
| -#include "{{v8_class_name}}.h"
|
| -
|
| -{% for filename in cpp_includes %}
|
| -#include "{{ filename }}"
|
| -{% endfor %}
|
| -
|
| -namespace WebCore {
|
| -
|
| -static void initializeScriptWrappableForInterface({{cpp_class_name}}* object)
|
| -{
|
| - if (ScriptWrappable::wrapperCanBeStoredInObject(object))
|
| - ScriptWrappable::setTypeInfoInObject(object, &{{v8_class_name}}::info);
|
| - else
|
| - ASSERT_NOT_REACHED();
|
| -}
|
| -
|
| -} // namespace WebCore
|
| -
|
| -// In ScriptWrappable::init, the use of a local function declaration has an issue on Windows:
|
| -// the local declaration does not pick up the surrounding namespace. Therefore, we provide this function
|
| -// in the global namespace.
|
| -// (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c)
|
| -void webCoreInitializeScriptWrappableForInterface(WebCore::{{cpp_class_name}}* object)
|
| -{
|
| - WebCore::initializeScriptWrappableForInterface(object);
|
| -}
|
| -
|
| -namespace WebCore {
|
| -WrapperTypeInfo {{v8_class_name}}::info = { {{v8_class_name}}::GetTemplate, {{v8_class_name}}::derefObject, 0, 0, 0, {{v8_class_name}}::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype };
|
| -
|
| -namespace {{cpp_class_name}}V8Internal {
|
| -
|
| -template <typename T> void V8_USE(T) { }
|
| -
|
| -{% for attribute in attributes %}
|
| -static void {{attribute.name}}AttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - {{cpp_class_name}}* imp = {{v8_class_name}}::toNative(info.Holder());
|
| - {{attribute.cpp_type}} result = imp->{{attribute.cpp_method_name}}();
|
| - v8::Handle<v8::Value> wrapper = result.get() ? v8::Handle<v8::Value>(DOMDataStore::getWrapper<{{attribute.v8_type}}>(result.get(), info.GetIsolate())) : v8Undefined();
|
| - if (wrapper.IsEmpty()) {
|
| - wrapper = toV8(result.get(), info.Holder(), info.GetIsolate());
|
| - if (!wrapper.IsEmpty())
|
| - V8HiddenPropertyName::setNamedHiddenReference(info.Holder(), "{{attribute.name}}", wrapper);
|
| - }
|
| - v8SetReturnValue(info, wrapper);
|
| -}
|
| -
|
| -static void {{attribute.name}}AttrGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter");
|
| - {{cpp_class_name}}V8Internal::{{attribute.name}}AttrGetter(name, info);
|
| - TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution");
|
| -}
|
| -
|
| -{% endfor %}
|
| -
|
| -} // namespace {{cpp_class_name}}V8Internal
|
| -
|
| -{% if attributes %}
|
| -static const V8DOMConfiguration::BatchedAttribute {{v8_class_name}}Attributes[] = {
|
| -{% for attribute in attributes %}
|
| - {"{{attribute.name}}", {{cpp_class_name}}V8Internal::{{attribute.name}}AttrGetterCallback, 0, 0, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
|
| -{% endfor %}
|
| -};
|
| -
|
| -{% endif %}
|
| -
|
| -
|
| -static v8::Handle<v8::FunctionTemplate> Configure{{v8_class_name}}Template(v8::Handle<v8::FunctionTemplate> desc, v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| -{
|
| - desc->ReadOnlyPrototype();
|
| -
|
| - v8::Local<v8::Signature> defaultSignature;
|
| - defaultSignature = V8DOMConfiguration::configureTemplate(desc, "{{interface_name}}", v8::Local<v8::FunctionTemplate>(), {{v8_class_name}}::internalFieldCount,
|
| - {{attribute_templates}}, {{number_of_attributes}},
|
| - 0, 0, isolate, currentWorldType);
|
| - UNUSED_PARAM(defaultSignature); // In some cases, it will not be used.
|
| -
|
| - // Custom toString template
|
| - desc->Set(v8::String::NewSymbol("toString"), V8PerIsolateData::current()->toStringTemplate());
|
| - return desc;
|
| -}
|
| -
|
| -v8::Handle<v8::FunctionTemplate> {{v8_class_name}}::GetTemplate(v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| -{
|
| - V8PerIsolateData* data = V8PerIsolateData::from(isolate);
|
| - V8PerIsolateData::TemplateMap::iterator result = data->templateMap(currentWorldType).find(&info);
|
| - if (result != data->templateMap(currentWorldType).end())
|
| - return result->value.newLocal(isolate);
|
| -
|
| - TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate");
|
| - v8::HandleScope handleScope(isolate);
|
| - v8::Handle<v8::FunctionTemplate> templ =
|
| - Configure{{v8_class_name}}Template(data->rawTemplate(&info, currentWorldType), isolate, currentWorldType);
|
| - data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
|
| - return handleScope.Close(templ);
|
| -}
|
| -
|
| -bool {{v8_class_name}}::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate, WrapperWorldType currentWorldType)
|
| -{
|
| - return V8PerIsolateData::from(isolate)->hasInstance(&info, value, currentWorldType);
|
| -}
|
| -
|
| -bool {{v8_class_name}}::HasInstanceInAnyWorld(v8::Handle<v8::Value> value, v8::Isolate* isolate)
|
| -{
|
| - return V8PerIsolateData::from(isolate)->hasInstance(&info, value, MainWorld)
|
| - || V8PerIsolateData::from(isolate)->hasInstance(&info, value, IsolatedWorld)
|
| - || V8PerIsolateData::from(isolate)->hasInstance(&info, value, WorkerWorld);
|
| -}
|
| -
|
| -v8::Handle<v8::Object> {{v8_class_name}}::createWrapper(PassRefPtr<{{cpp_class_name}}> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| -{
|
| - ASSERT(impl.get());
|
| - ASSERT(DOMDataStore::getWrapper<{{v8_class_name}}>(impl.get(), isolate).IsEmpty());
|
| - if (ScriptWrappable::wrapperCanBeStoredInObject(impl.get())) {
|
| - const WrapperTypeInfo* actualInfo = ScriptWrappable::getTypeInfoFromObject(impl.get());
|
| - // Might be a XXXConstructor::info instead of an XXX::info. These will both have
|
| - // the same object de-ref functions, though, so use that as the basis of the check.
|
| - RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction == info.derefObjectFunction);
|
| - }
|
| -
|
| - v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
|
| - if (UNLIKELY(wrapper.IsEmpty()))
|
| - return wrapper;
|
| -
|
| - installPerContextProperties(wrapper, impl.get(), isolate);
|
| - V8DOMWrapper::associateObjectWithWrapper<{{v8_class_name}}>(impl, &info, wrapper, isolate, WrapperConfiguration::Independent);
|
| - return wrapper;
|
| -}
|
| -
|
| -void {{v8_class_name}}::derefObject(void* object)
|
| -{
|
| - fromInternalPointer(object)->deref();
|
| -}
|
| -
|
| -} // namespace WebCore
|
| -
|
| -{% if conditional_string %}
|
| -#endif // {{conditional_string}}
|
| -{% endif %}
|
| -
|
|
|