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
3 // found in the LICENSE file.
5 #ifndef CHROME_TEST_UI_UI_PERF_TEST_H_
6 #define CHROME_TEST_UI_UI_PERF_TEST_H_
8 #include "chrome/test/ui/ui_test.h"
10 class UIPerfTest
: public UITest
{
12 // Overrides UITestBase.
13 virtual void SetLaunchSwitches() OVERRIDE
;
15 // Prints IO performance data for use by perf graphs.
16 void PrintIOPerfInfo(const char* test_name
);
18 // Prints memory usage data for use by perf graphs.
19 void PrintMemoryUsageInfo(const char* test_name
);
21 // Configures the test to use the reference build.
22 void UseReferenceBuild();
25 #endif // CHROME_TEST_UI_UI_PERF_TEST_H_