Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / custom / CustomElementCallbackInvocation.cpp
index 13360fd..444f39c 100644 (file)
@@ -42,7 +42,7 @@ public:
     AttachedDetachedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, CustomElementLifecycleCallbacks::CallbackType which);
 
 private:
-    virtual void dispatch(Element*) OVERRIDE;
+    virtual void dispatch(Element*) override;
 
     CustomElementLifecycleCallbacks::CallbackType m_which;
 };
@@ -73,7 +73,7 @@ public:
     AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
 
 private:
-    virtual void dispatch(Element*) OVERRIDE;
+    virtual void dispatch(Element*) override;
 
     AtomicString m_name;
     AtomicString m_oldValue;
@@ -101,8 +101,8 @@ public:
     }
 
 private:
-    virtual void dispatch(Element*) OVERRIDE;
-    virtual bool isCreatedCallback() const OVERRIDE { return true; }
+    virtual void dispatch(Element*) override;
+    virtual bool isCreatedCallback() const override { return true; }
 };
 
 void CreatedInvocation::dispatch(Element* element)