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

Unified Diff: Source/bindings/templates/methods.cpp

Issue 199633014: Use wrapper_configuration consistently in bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Split off [Constructor] change Created 6 years, 9 months 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/templates/methods.cpp
diff --git a/Source/bindings/templates/methods.cpp b/Source/bindings/templates/methods.cpp
index 8abf31b557d81605c1a586b54e305818044058d1..08b10d2e325431c4d0fb0883983e80ba70a9d475 100644
--- a/Source/bindings/templates/methods.cpp
+++ b/Source/bindings/templates/methods.cpp
@@ -368,7 +368,7 @@ static void constructor{{constructor.overload_index}}(const v8::FunctionCallback
ExceptionState exceptionState(ExceptionState::ConstructionContext, "{{interface_name}}", info.Holder(), info.GetIsolate());
{% endif %}
{% if interface_length and not constructor.overload_index %}
- {# FIXME: remove this UNLIKELY: constructors are heavy, so no difference. #}
+ {# FIXME: remove UNLIKELY: constructors are expensive, so no difference. #}
if (UNLIKELY(info.Length() < {{interface_length}})) {
{{throw_type_error(constructor,
'ExceptionMessages::notEnoughArguments(%s, info.Length())' %
@@ -392,9 +392,7 @@ static void constructor{{constructor.overload_index}}(const v8::FunctionCallback
return;
{% endif %}
- {# FIXME: Should probably be Independent unless [ActiveDOMObject]
- or [DependentLifetime]. #}
- V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8_class}}::wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent);
+ V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8_class}}::wrapperTypeInfo, wrapper, info.GetIsolate(), {{wrapper_configuration}});
v8SetReturnValue(info, wrapper);
}
{% endmacro %}
@@ -442,7 +440,7 @@ static void {{v8_class}}ConstructorCallback(const v8::FunctionCallbackInfo<v8::V
return;
{% endif %}
- V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8_class}}Constructor::wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent);
+ V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{v8_class}}Constructor::wrapperTypeInfo, wrapper, info.GetIsolate(), {{wrapper_configuration}});
v8SetReturnValue(info, wrapper);
}
{% endmacro %}
« no previous file with comments | « Source/bindings/templates/interface.cpp ('k') | Source/bindings/tests/results/V8TestInterfaceConstructor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698