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

Unified Diff: chrome/test/base/chrome_test_launcher.cc

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (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 | « chrome/test/base/chrome_render_view_test.h ('k') | chrome/test/base/chrome_test_suite.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/chrome_test_launcher.cc
diff --git a/chrome/test/base/chrome_test_launcher.cc b/chrome/test/base/chrome_test_launcher.cc
index 524be28555d62019c30bdb57842e642e807b6ce8..dd316202143bf49b8297a5eacf346c6020eb20ca 100644
--- a/chrome/test/base/chrome_test_launcher.cc
+++ b/chrome/test/base/chrome_test_launcher.cc
@@ -52,12 +52,12 @@ class ChromeTestLauncherDelegate : public content::TestLauncherDelegate {
: runner_(runner) {}
virtual ~ChromeTestLauncherDelegate() {}
- virtual int RunTestSuite(int argc, char** argv) OVERRIDE {
+ virtual int RunTestSuite(int argc, char** argv) override {
return runner_->RunTestSuite(argc, argv);
}
virtual bool AdjustChildProcessCommandLine(
- CommandLine* command_line, const base::FilePath& temp_data_dir) OVERRIDE {
+ CommandLine* command_line, const base::FilePath& temp_data_dir) override {
CommandLine new_command_line(command_line->GetProgram());
CommandLine::SwitchMap switches = command_line->GetSwitches();
@@ -79,11 +79,11 @@ class ChromeTestLauncherDelegate : public content::TestLauncherDelegate {
}
protected:
- virtual content::ContentMainDelegate* CreateContentMainDelegate() OVERRIDE {
+ virtual content::ContentMainDelegate* CreateContentMainDelegate() override {
return new ChromeMainDelegate();
}
- virtual void AdjustDefaultParallelJobs(int* default_jobs) OVERRIDE {
+ virtual void AdjustDefaultParallelJobs(int* default_jobs) override {
#if defined(OS_WIN)
if (CommandLine::ForCurrentProcess()->HasSwitch(
switches::kAshBrowserTests)) {
« no previous file with comments | « chrome/test/base/chrome_render_view_test.h ('k') | chrome/test/base/chrome_test_suite.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698