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

Side by Side Diff: chrome/test/perf/browser_perf_test.h

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 | « chrome/test/nacl/pnacl_header_test.h ('k') | chrome/test/perf/mach_ports_performancetest.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_TEST_PERF_BROWSER_PERF_TEST_H_ 5 #ifndef CHROME_TEST_PERF_BROWSER_PERF_TEST_H_
6 #define CHROME_TEST_PERF_BROWSER_PERF_TEST_H_ 6 #define CHROME_TEST_PERF_BROWSER_PERF_TEST_H_
7 7
8 #include "chrome/test/base/in_process_browser_test.h" 8 #include "chrome/test/base/in_process_browser_test.h"
9 9
10 namespace base { 10 namespace base {
11 class CommandLine; 11 class CommandLine;
12 } 12 }
13 13
14 class BrowserPerfTest : public InProcessBrowserTest { 14 class BrowserPerfTest : public InProcessBrowserTest {
15 public: 15 public:
16 BrowserPerfTest(); 16 BrowserPerfTest();
17 virtual ~BrowserPerfTest(); 17 virtual ~BrowserPerfTest();
18 18
19 // Set up common browser perf test flags. Typically call down to this if 19 // Set up common browser perf test flags. Typically call down to this if
20 // overridden. 20 // overridden.
21 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE; 21 virtual void SetUpCommandLine(base::CommandLine* command_line) override;
22 22
23 // Prints IO performance data for use by perf graphs. 23 // Prints IO performance data for use by perf graphs.
24 void PrintIOPerfInfo(const std::string& test_name); 24 void PrintIOPerfInfo(const std::string& test_name);
25 25
26 // Prints memory usage data for use by perf graphs. 26 // Prints memory usage data for use by perf graphs.
27 void PrintMemoryUsageInfo(const std::string& test_name); 27 void PrintMemoryUsageInfo(const std::string& test_name);
28 }; 28 };
29 29
30 #endif // CHROME_TEST_PERF_BROWSER_PERF_TEST_H_ 30 #endif // CHROME_TEST_PERF_BROWSER_PERF_TEST_H_
OLDNEW
« no previous file with comments | « chrome/test/nacl/pnacl_header_test.h ('k') | chrome/test/perf/mach_ports_performancetest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698