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

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

Issue 931793002: bindings: Fixes potential build breakage (V8DOMConfiguration::installAccessor). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/templates/interface_base.cpp
diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp
index c83e05b818d615438c800d5af4338623213414fa..98ec1baeb7eaf764a04dc267c69e2635265d437e 100644
--- a/Source/bindings/templates/interface_base.cpp
+++ b/Source/bindings/templates/interface_base.cpp
@@ -336,7 +336,7 @@ static void install{{v8_class}}Template(v8::Local<v8::FunctionTemplate> function
{% if attribute.is_expose_js_accessors %}
static const V8DOMConfiguration::AccessorConfiguration accessorConfiguration =\
{{attribute_configuration(attribute)}};
- V8DOMConfiguration::installAccessor(isolate, instanceTemplate, prototypeTemplate, defaultSignature, accessorConfiguration);
+ V8DOMConfiguration::installAccessor(isolate, prototypeTemplate, defaultSignature, accessorConfiguration);
{% else %}
static const V8DOMConfiguration::AttributeConfiguration attributeConfiguration =\
{{attribute_configuration(attribute)}};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698