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

Unified Diff: third_party/WebKit/Source/bindings/templates/attributes.cpp.tmpl

Issue 2733763003: Reimplement [PutForwards] per spec (Closed)
Patch Set: rebase Created 3 years, 7 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: third_party/WebKit/Source/bindings/templates/attributes.cpp.tmpl
diff --git a/third_party/WebKit/Source/bindings/templates/attributes.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/attributes.cpp.tmpl
index 93dd7c8e93b4aa240283c6c2d70bc6a8232ac12d..41892f8c99c75cd7c9a4047fb18e2e9544ba756f 100644
--- a/third_party/WebKit/Source/bindings/templates/attributes.cpp.tmpl
+++ b/third_party/WebKit/Source/bindings/templates/attributes.cpp.tmpl
@@ -299,14 +299,11 @@ v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
return; // Return silently because of [LenientThis].
{% endif %}
- {% if not attribute.is_static and not attribute.is_replaceable %}
+ {% set check_security_for_receiver = attribute.is_check_security_for_receiver and not attribute.is_data_type_property %}
Yuki 2017/05/08 09:31:19 nit: If this is not a big deal, I'd prefer not ali
+
+ {% if not attribute.is_static and not attribute.is_replaceable and
+ (not attribute.is_put_forwards or check_security_for_receiver) %}
v8::Local<v8::Object> holder = info.Holder();
Yuki 2017/05/08 09:31:19 Personally, I'd prefer the previous code rather th
- {% if attribute.is_put_forwards %}
- {{cpp_class}}* proxyImpl = {{v8_class}}::toImpl(holder);
- {{attribute.cpp_type}} impl = WTF::GetPtr(proxyImpl->{{attribute.name}}());
- if (!impl)
- return;
- {% else %}
{% set local_dom_window_only = interface_name == 'Window' and not attribute.has_cross_origin_setter %}
{% if local_dom_window_only %}
{% if attribute.is_check_security_for_receiver %}
@@ -321,9 +318,8 @@ v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
{{cpp_class}}* impl = {{v8_class}}::toImpl(holder);
{% endif %}{# local_dom_window_only #}
{% endif %}
- {% endif %}
- {% if attribute.is_check_security_for_receiver and not attribute.is_data_type_property %}
+ {% if check_security_for_receiver %}
// Perform a security check for the receiver object.
{{define_exception_state}}
{% if local_dom_window_only %}
@@ -343,6 +339,17 @@ v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
#error Attribute setter with the security check for the return value is not supported. Since the return value is the given value to be set, it\'s meaningless to perform the security check for the return value.
{% endif %}
+ {% if attribute.is_put_forwards %}
+ {{define_exception_state}}
+ v8::Local<v8::Value> target;
+ if (!info.Holder()->Get(info.GetIsolate()->GetCurrentContext(), V8String(info.GetIsolate(), "{{attribute.name}}")).ToLocal(&target))
Yuki 2017/05/08 09:31:19 nit: You could use |holder| instead of |info.GetHo
+ return;
+ if (!target->IsObject()) {
+ exceptionState.ThrowTypeError("The attribute value is not an object");
+ return;
+ }
+ target.As<v8::Object>()->Set(info.GetIsolate()->GetCurrentContext(), V8String(info.GetIsolate(), "{{attribute.target_attribute_name}}"), v8Value).IsNothing();
Yuki 2017/05/08 09:31:19 IsNothing() doesn't make sense here. IIUC, you sh
+ {% else %}
Yuki 2017/05/08 09:31:19 nit: {% else %}{# attribute.is_put_forwards %}
{% if attribute.is_custom_element_callbacks or
(attribute.is_reflect and not (attribute.idl_type == 'DOMString' and is_node)) %}
// Skip on compact node DOMString getters.
@@ -408,6 +415,7 @@ v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
isolate, "{{cpp_class}}#{{attribute.name.capitalize()}}")
.DeleteProperty(holder, v8::Undefined(isolate));
{% endif %}
+ {% endif %}{# is_put_forwards #}
Yuki 2017/05/08 09:31:19 nit: {# attribute.is_put_forwards #}
}
{% endfilter %}{# format_remove_duplicates #}
{% endmacro %}

Powered by Google App Engine
This is Rietveld 408576698