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

Unified Diff: content/shell/renderer/test_runner/test_runner.h

Issue 629143003: Replace OVERRIDE and FINAL with override and final in content/shell/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « content/shell/renderer/test_runner/test_plugin.h ('k') | content/shell/renderer/test_runner/test_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/test_runner/test_runner.h
diff --git a/content/shell/renderer/test_runner/test_runner.h b/content/shell/renderer/test_runner/test_runner.h
index f1046db104e27dd5494122d67a68a3d22b71360e..2fb5dc31622e9302d7ffb2c98aa9e2f55a8030a1 100644
--- a/content/shell/renderer/test_runner/test_runner.h
+++ b/content/shell/renderer/test_runner/test_runner.h
@@ -65,12 +65,12 @@ class TestRunner : public WebTestRunner,
void InvokeCallback(scoped_ptr<InvokeCallbackTask> callback);
// WebTestRunner implementation.
- virtual bool ShouldGeneratePixelResults() OVERRIDE;
- virtual bool ShouldDumpAsAudio() const OVERRIDE;
+ virtual bool ShouldGeneratePixelResults() override;
+ virtual bool ShouldDumpAsAudio() const override;
virtual void GetAudioData(
- std::vector<unsigned char>* buffer_view) const OVERRIDE;
- virtual bool ShouldDumpBackForwardList() const OVERRIDE;
- virtual blink::WebPermissionClient* GetWebPermissions() const OVERRIDE;
+ std::vector<unsigned char>* buffer_view) const override;
+ virtual bool ShouldDumpBackForwardList() const override;
+ virtual blink::WebPermissionClient* GetWebPermissions() const override;
// Methods used by WebTestProxyBase.
bool shouldDumpSelectionRect() const;
@@ -164,7 +164,7 @@ class TestRunner : public WebTestRunner,
public:
WorkQueueTask(WorkQueue* object) : WebMethodTask<WorkQueue>(object) {}
- virtual void RunIfValid() OVERRIDE;
+ virtual void RunIfValid() override;
};
WebTaskList task_list_;
« no previous file with comments | « content/shell/renderer/test_runner/test_plugin.h ('k') | content/shell/renderer/test_runner/test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698