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

Unified Diff: Source/core/dom/custom/CustomElementLifecycleCallbacks.h

Issue 494133002: Append "Callback" to each value of enum CallbackType (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/core/dom/custom/CustomElementLifecycleCallbacks.h
diff --git a/Source/core/dom/custom/CustomElementLifecycleCallbacks.h b/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
index fc986621f7abb0ed1de40615934acffbefb28231..5f2b212010f41f74adfc3d918002d4c4de74c542 100644
--- a/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
+++ b/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
@@ -43,11 +43,11 @@ public:
virtual ~CustomElementLifecycleCallbacks() { }
enum CallbackType {
- None = 0,
- Created = 1 << 0,
- Attached = 1 << 1,
- Detached = 1 << 2,
- AttributeChanged = 1 << 3
+ None = 0,
+ CreatedCallback = 1 << 0,
+ AttachedCallback = 1 << 1,
+ DetachedCallback = 1 << 2,
+ AttributeChangedCallback = 1 << 3
};
bool hasCallback(CallbackType type) const { return m_which & type; }
« no previous file with comments | « Source/core/dom/custom/CustomElementCallbackInvocation.cpp ('k') | Source/core/dom/custom/CustomElementScheduler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698