| 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; }
|
|
|