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

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

Issue 8883005: Input latency performance test that uses tracing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no change - update and merge Created 9 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_TEST_PERF_BROWSER_PERF_TEST_H_
6 #define CHROME_TEST_PERF_BROWSER_PERF_TEST_H_
7 #pragma once
8
9 #include "chrome/test/base/in_process_browser_test.h"
10
11 class CommandLine;
12
13 class BrowserPerfTest : public InProcessBrowserTest {
14 public:
15 BrowserPerfTest();
16 virtual ~BrowserPerfTest();
17
18 // Set up common browser perf test flags. Typically call down to this if
19 // overridden.
20 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
21
22 // Prints IO performance data for use by perf graphs.
23 void PrintIOPerfInfo(const char* test_name);
Paweł Hajdan Jr. 2011/12/22 08:08:39 nit: I'm not a fan of "const char*" in the public
jbates 2011/12/22 19:39:34 Done.
24
25 // Prints memory usage data for use by perf graphs.
26 void PrintMemoryUsageInfo(const char* test_name);
27 };
28
29 #endif // CHROME_TEST_PERF_BROWSER_PERF_TEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698