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

Unified Diff: Source/core/inspector/InspectorHistory.cpp

Issue 638553002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Nits 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/core/inspector/InspectorHistory.h ('k') | Source/core/inspector/InspectorInputAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorHistory.cpp
diff --git a/Source/core/inspector/InspectorHistory.cpp b/Source/core/inspector/InspectorHistory.cpp
index ba06be41825f4e7b737bfb15ae8c166c23f12e82..3452946a5ce7188572f0f6fd19ee29d18f171565 100644
--- a/Source/core/inspector/InspectorHistory.cpp
+++ b/Source/core/inspector/InspectorHistory.cpp
@@ -39,17 +39,17 @@ namespace blink {
namespace {
-class UndoableStateMark FINAL : public InspectorHistory::Action {
+class UndoableStateMark final : public InspectorHistory::Action {
public:
UndoableStateMark() : InspectorHistory::Action("[UndoableState]") { }
- virtual bool perform(ExceptionState&) OVERRIDE { return true; }
+ virtual bool perform(ExceptionState&) override { return true; }
- virtual bool undo(ExceptionState&) OVERRIDE { return true; }
+ virtual bool undo(ExceptionState&) override { return true; }
- virtual bool redo(ExceptionState&) OVERRIDE { return true; }
+ virtual bool redo(ExceptionState&) override { return true; }
- virtual bool isUndoableStateMark() OVERRIDE { return true; }
+ virtual bool isUndoableStateMark() override { return true; }
};
}
« no previous file with comments | « Source/core/inspector/InspectorHistory.h ('k') | Source/core/inspector/InspectorInputAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698