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

Unified Diff: Source/bindings/core/v8/V8MutationCallback.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/V8LazyEventListener.h ('k') | Source/bindings/core/v8/V8NodeFilterCondition.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8MutationCallback.h
diff --git a/Source/bindings/core/v8/V8MutationCallback.h b/Source/bindings/core/v8/V8MutationCallback.h
index 66920b4c2d6845c318b6ffbb1209de1a997296d5..bf3d455e14f048c1c3c4b9181db5f8899530d3bb 100644
--- a/Source/bindings/core/v8/V8MutationCallback.h
+++ b/Source/bindings/core/v8/V8MutationCallback.h
@@ -38,15 +38,15 @@ namespace blink {
class ExecutionContext;
-class V8MutationCallback FINAL : public MutationCallback, public ActiveDOMCallback {
+class V8MutationCallback final : public MutationCallback, public ActiveDOMCallback {
public:
static PassOwnPtr<V8MutationCallback> create(v8::Handle<v8::Function> callback, v8::Handle<v8::Object> owner, ScriptState* scriptState)
{
return adoptPtr(new V8MutationCallback(callback, owner, scriptState));
}
- virtual void call(const WillBeHeapVector<RefPtrWillBeMember<MutationRecord> >&, MutationObserver*) OVERRIDE;
- virtual ExecutionContext* executionContext() const OVERRIDE { return ContextLifecycleObserver::executionContext(); }
+ virtual void call(const WillBeHeapVector<RefPtrWillBeMember<MutationRecord> >&, MutationObserver*) override;
+ virtual ExecutionContext* executionContext() const override { return ContextLifecycleObserver::executionContext(); }
private:
V8MutationCallback(v8::Handle<v8::Function>, v8::Handle<v8::Object>, ScriptState*);
« no previous file with comments | « Source/bindings/core/v8/V8LazyEventListener.h ('k') | Source/bindings/core/v8/V8NodeFilterCondition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698