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

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

Issue 135703002: Update inspector classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No change under web/ Created 6 years, 11 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
Index: Source/core/inspector/InspectorHistory.cpp
diff --git a/Source/core/inspector/InspectorHistory.cpp b/Source/core/inspector/InspectorHistory.cpp
index e882744b08450911b01b7a7ebbfd0f34d238ae8a..556d4bbb40331ca7bbe2fc4cb7233299ac659f6a 100644
--- a/Source/core/inspector/InspectorHistory.cpp
+++ b/Source/core/inspector/InspectorHistory.cpp
@@ -39,17 +39,17 @@ namespace WebCore {
namespace {
-class UndoableStateMark : public InspectorHistory::Action {
+class UndoableStateMark FINAL : public InspectorHistory::Action {
public:
UndoableStateMark() : InspectorHistory::Action("[UndoableState]") { }
- virtual bool perform(ExceptionState&) { return true; }
+ virtual bool perform(ExceptionState&) OVERRIDE { return true; }
- virtual bool undo(ExceptionState&) { return true; }
+ virtual bool undo(ExceptionState&) OVERRIDE { return true; }
- virtual bool redo(ExceptionState&) { return true; }
+ virtual bool redo(ExceptionState&) OVERRIDE { return true; }
- virtual bool isUndoableStateMark() { return true; }
+ virtual bool isUndoableStateMark() OVERRIDE { return true; }
};
}
« no previous file with comments | « Source/core/inspector/InspectorHeapProfilerAgent.cpp ('k') | Source/core/inspector/InspectorIndexedDBAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698