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

Unified Diff: Source/bindings/core/v8/V8AbstractEventListener.h

Issue 638813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/bindings/core/v8/SerializedScriptValue.cpp ('k') | Source/bindings/core/v8/V8Binding.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8AbstractEventListener.h
diff --git a/Source/bindings/core/v8/V8AbstractEventListener.h b/Source/bindings/core/v8/V8AbstractEventListener.h
index ca2a192cbdf8d9191f18030efd606c60b5f5501c..4a8e77693923b057d6654d33a45e963a55e28491 100644
--- a/Source/bindings/core/v8/V8AbstractEventListener.h
+++ b/Source/bindings/core/v8/V8AbstractEventListener.h
@@ -68,9 +68,9 @@ public:
// Implementation of EventListener interface.
- virtual bool operator==(const EventListener& other) OVERRIDE { return this == &other; }
+ virtual bool operator==(const EventListener& other) override { return this == &other; }
- virtual void handleEvent(ExecutionContext*, Event*) OVERRIDE;
+ virtual void handleEvent(ExecutionContext*, Event*) override;
virtual bool isLazy() const { return false; }
@@ -108,7 +108,7 @@ public:
m_listener.clear();
}
- virtual bool belongsToTheCurrentWorld() const OVERRIDE FINAL;
+ virtual bool belongsToTheCurrentWorld() const override final;
v8::Isolate* isolate() const { return m_isolate; }
virtual DOMWrapperWorld& world() const { return scriptState()->world(); }
ScriptState* scriptState() const
@@ -133,7 +133,7 @@ protected:
private:
// Implementation of EventListener function.
- virtual bool virtualisAttribute() const OVERRIDE { return m_isAttribute; }
+ virtual bool virtualisAttribute() const override { return m_isAttribute; }
virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsevent, Event*) = 0;
« no previous file with comments | « Source/bindings/core/v8/SerializedScriptValue.cpp ('k') | Source/bindings/core/v8/V8Binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698