1// Copyright (c) 2010 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 BASE_TEST_PERF_TEST_SUITE_H_
6#define BASE_TEST_PERF_TEST_SUITE_H_
7#pragma once
8
9#include "base/test/test_suite.h"
10
11namespace base {
12
13class PerfTestSuite : public TestSuite {
14 public:
15  PerfTestSuite(int argc, char** argv);
16
17  virtual void Initialize();
18  virtual void Shutdown();
19};
20
21}  // namespace base
22
23#endif  // BASE_TEST_PERF_TEST_SUITE_H_
24