| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementLifecycleCallbacks.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
|
| similarity index 85%
|
| rename from third_party/WebKit/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
|
| rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
|
| index 195d0f8224ca48703ce5490acccfe6f9350ff9b1..2b1e584aafc13b2075e85ec8afa985dc784698f6 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef CustomElementLifecycleCallbacks_h
|
| -#define CustomElementLifecycleCallbacks_h
|
| +#ifndef V0CustomElementLifecycleCallbacks_h
|
| +#define V0CustomElementLifecycleCallbacks_h
|
|
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/text/AtomicString.h"
|
| @@ -38,9 +38,9 @@ namespace blink {
|
|
|
| class Element;
|
|
|
| -class CustomElementLifecycleCallbacks : public GarbageCollectedFinalized<CustomElementLifecycleCallbacks> {
|
| +class V0CustomElementLifecycleCallbacks : public GarbageCollectedFinalized<V0CustomElementLifecycleCallbacks> {
|
| public:
|
| - virtual ~CustomElementLifecycleCallbacks() { }
|
| + virtual ~V0CustomElementLifecycleCallbacks() { }
|
|
|
| enum CallbackType {
|
| None = 0,
|
| @@ -60,7 +60,7 @@ public:
|
| DEFINE_INLINE_VIRTUAL_TRACE() { }
|
|
|
| protected:
|
| - explicit CustomElementLifecycleCallbacks(CallbackType type) : m_callbackType(type) { }
|
| + explicit V0CustomElementLifecycleCallbacks(CallbackType type) : m_callbackType(type) { }
|
|
|
| private:
|
| CallbackType m_callbackType;
|
| @@ -68,4 +68,4 @@ private:
|
|
|
| } // namespace blink
|
|
|
| -#endif // CustomElementLifecycleCallbacks_h
|
| +#endif // V0CustomElementLifecycleCallbacks_h
|
|
|