Allows endCallbacks in tts to queue up speech in the speech queue and simplify speech...
[chromium-blink-merge.git] / base / test / perf_test_suite.h
blob52528f0ac45056045d39b74672fc18da75ae51bc
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.
5 #ifndef BASE_TEST_PERF_TEST_SUITE_H_
6 #define BASE_TEST_PERF_TEST_SUITE_H_
8 #include "base/test/test_suite.h"
10 namespace base {
12 class PerfTestSuite : public TestSuite {
13 public:
14 PerfTestSuite(int argc, char** argv);
16 void Initialize() override;
17 void Shutdown() override;
20 } // namespace base
22 #endif // BASE_TEST_PERF_TEST_SUITE_H_