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

Side by Side Diff: chrome/test/base/browser_perf_tests_main.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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/test/base/browser_tests_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/test/base/chrome_test_launcher.h" 5 #include "chrome/test/base/chrome_test_launcher.h"
6 #include "chrome/test/base/chrome_test_suite.h" 6 #include "chrome/test/base/chrome_test_suite.h"
7 7
8 class ChromeBrowserTestSuiteRunner : public ChromeTestSuiteRunner { 8 class ChromeBrowserTestSuiteRunner : public ChromeTestSuiteRunner {
9 public: 9 public:
10 virtual int RunTestSuite(int argc, char** argv) OVERRIDE { 10 virtual int RunTestSuite(int argc, char** argv) override {
11 return ChromeTestSuite(argc, argv).Run(); 11 return ChromeTestSuite(argc, argv).Run();
12 } 12 }
13 }; 13 };
14 14
15 int main(int argc, char** argv) { 15 int main(int argc, char** argv) {
16 // Always run browser perf tests serially - parallel running would be less 16 // Always run browser perf tests serially - parallel running would be less
17 // deterministic and distort perf measurements. 17 // deterministic and distort perf measurements.
18 ChromeBrowserTestSuiteRunner runner; 18 ChromeBrowserTestSuiteRunner runner;
19 return LaunchChromeTests(1, &runner, argc, argv); 19 return LaunchChromeTests(1, &runner, argc, argv);
20 } 20 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/base/browser_tests_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698