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

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

Issue 503043003: Rename CustomElementCallbackDispatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Full patch Created 6 years, 4 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/attributes.cpp
diff --git a/Source/bindings/templates/attributes.cpp b/Source/bindings/templates/attributes.cpp
index 640fd79b1a286751a0dfb74bddd93ee04ee3cff2..95a14ed3c2ec25dcc37d02586e38aafe286c23ae 100644
--- a/Source/bindings/templates/attributes.cpp
+++ b/Source/bindings/templates/attributes.cpp
@@ -265,7 +265,7 @@ v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
(attribute.is_reflect and
not(attribute.idl_type == 'DOMString' and is_node)) %}
{# Skip on compact node DOMString getters #}
- CustomElementCallbackDispatcher::CallbackDeliveryScope deliveryScope;
+ CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
{% endif %}
{% if attribute.is_call_with_execution_context or
attribute.is_setter_call_with_execution_context %}
@@ -326,7 +326,7 @@ v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackI
}
{% endif %}
{% if attribute.is_custom_element_callbacks or attribute.is_reflect %}
- CustomElementCallbackDispatcher::CallbackDeliveryScope deliveryScope;
+ CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
{% endif %}
{% if attribute.has_custom_setter %}
{{v8_class}}::{{attribute.name}}AttributeSetterCustom(v8Value, info);

Powered by Google App Engine
This is Rietveld 408576698