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

Unified Diff: content/test/ppapi/ppapi_test.h

Issue 630813002: Replace OVERRIDE and FINAL with override and final in content/test/[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/test/plugin/plugin_windowless_test.h ('k') | content/test/test_blink_web_unit_test_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/ppapi/ppapi_test.h
diff --git a/content/test/ppapi/ppapi_test.h b/content/test/ppapi/ppapi_test.h
index 345ad21dbbdaa0304125a06903cac0ba9142eb58..a1a35977b0852e35f508f293f678562267e9b92c 100644
--- a/content/test/ppapi/ppapi_test.h
+++ b/content/test/ppapi/ppapi_test.h
@@ -28,8 +28,8 @@ class PPAPITestMessageHandler : public content::TestMessageHandler {
public:
PPAPITestMessageHandler();
- virtual MessageResponse HandleMessage(const std::string& json) OVERRIDE;
- virtual void Reset() OVERRIDE;
+ virtual MessageResponse HandleMessage(const std::string& json) override;
+ virtual void Reset() override;
const std::string& message() const {
return message_;
@@ -46,7 +46,7 @@ class PPAPITestBase : public ContentBrowserTest {
PPAPITestBase();
// ContentBrowserTest overrides.
- virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) override;
virtual std::string BuildQuery(const std::string& base,
const std::string& test_case) = 0;
@@ -71,10 +71,10 @@ class PPAPITest : public PPAPITestBase {
public:
PPAPITest();
- virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) override;
virtual std::string BuildQuery(const std::string& base,
- const std::string& test_case) OVERRIDE;
+ const std::string& test_case) override;
protected:
bool in_process_; // Controls the --ppapi-in-process switch.
};
@@ -85,8 +85,8 @@ class OutOfProcessPPAPITest : public PPAPITest {
public:
OutOfProcessPPAPITest();
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
};
} // namespace
« no previous file with comments | « content/test/plugin/plugin_windowless_test.h ('k') | content/test/test_blink_web_unit_test_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698