Index: Source/bindings/core/v8/V8CustomElementLifecycleCallbacks.h |
diff --git a/Source/bindings/core/v8/V8CustomElementLifecycleCallbacks.h b/Source/bindings/core/v8/V8CustomElementLifecycleCallbacks.h |
index 1c8ec98e26b2f8be0b4f19f78dd90a923e0f4fcb..6c73468f0beb05a512c4d8e77594f0b6599eca04 100644 |
--- a/Source/bindings/core/v8/V8CustomElementLifecycleCallbacks.h |
+++ b/Source/bindings/core/v8/V8CustomElementLifecycleCallbacks.h |
@@ -45,7 +45,7 @@ class CustomElementLifecycleCallbacks; |
class Element; |
class V8PerContextData; |
-class V8CustomElementLifecycleCallbacks FINAL : public CustomElementLifecycleCallbacks, ContextLifecycleObserver { |
+class V8CustomElementLifecycleCallbacks final : public CustomElementLifecycleCallbacks, ContextLifecycleObserver { |
public: |
static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged); |
@@ -56,10 +56,10 @@ public: |
private: |
V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged); |
- virtual void created(Element*) OVERRIDE; |
- virtual void attached(Element*) OVERRIDE; |
- virtual void detached(Element*) OVERRIDE; |
- virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE; |
+ virtual void created(Element*) override; |
+ virtual void attached(Element*) override; |
+ virtual void detached(Element*) override; |
+ virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) override; |
void call(const ScopedPersistent<v8::Function>& weakCallback, Element*); |