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

Unified Diff: Source/web/WebElement.cpp

Issue 503043003: Rename CustomElementCallbackDispatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: TBR added Created 6 years, 3 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 | « Source/core/dom/custom/CustomElementScheduler.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebElement.cpp
diff --git a/Source/web/WebElement.cpp b/Source/web/WebElement.cpp
index eb43576a16cebd066b64023221ba8af3d0334a11..afd593b03e397b2f647aef71fdb82686b28600c1 100644
--- a/Source/web/WebElement.cpp
+++ b/Source/web/WebElement.cpp
@@ -35,7 +35,7 @@
#include "core/dom/Element.h"
#include "core/dom/Fullscreen.h"
#include "core/dom/NamedNodeMap.h"
-#include "core/dom/custom/CustomElementCallbackDispatcher.h"
+#include "core/dom/custom/CustomElementProcessingStack.h"
#include "core/dom/shadow/ShadowRoot.h"
#include "core/rendering/RenderBoxModelObject.h"
#include "core/rendering/RenderObject.h"
@@ -80,7 +80,7 @@ void WebElement::removeAttribute(const WebString& attrName)
{
// TODO: Custom element callbacks need to be called on WebKit API methods that
// mutate the DOM in any way.
- CustomElementCallbackDispatcher::CallbackDeliveryScope deliverCustomElementCallbacks;
+ CustomElementProcessingStack::CallbackDeliveryScope deliverCustomElementCallbacks;
unwrap<Element>()->removeAttribute(attrName);
}
@@ -93,7 +93,7 @@ bool WebElement::setAttribute(const WebString& attrName, const WebString& attrVa
{
// TODO: Custom element callbacks need to be called on WebKit API methods that
// mutate the DOM in any way.
- CustomElementCallbackDispatcher::CallbackDeliveryScope deliverCustomElementCallbacks;
+ CustomElementProcessingStack::CallbackDeliveryScope deliverCustomElementCallbacks;
TrackExceptionState exceptionState;
unwrap<Element>()->setAttribute(attrName, attrValue, exceptionState);
return !exceptionState.hadException();
« no previous file with comments | « Source/core/dom/custom/CustomElementScheduler.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698