| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BASE_CHROME_UNIT_TEST_SUITE_H_ | 5 #ifndef CHROME_TEST_BASE_CHROME_UNIT_TEST_SUITE_H_ |
| 6 #define CHROME_TEST_BASE_CHROME_UNIT_TEST_SUITE_H_ | 6 #define CHROME_TEST_BASE_CHROME_UNIT_TEST_SUITE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 virtual void Initialize() OVERRIDE; | 25 virtual void Initialize() OVERRIDE; |
| 26 virtual void Shutdown() OVERRIDE; | 26 virtual void Shutdown() OVERRIDE; |
| 27 | 27 |
| 28 // These methods allow unit tests which run in the browser_test binary, and so | 28 // These methods allow unit tests which run in the browser_test binary, and so |
| 29 // which don't exercise the initialization in this test suite, to do basic | 29 // which don't exercise the initialization in this test suite, to do basic |
| 30 // setup which this class does. | 30 // setup which this class does. |
| 31 static void InitializeProviders(); | 31 static void InitializeProviders(); |
| 32 static void InitializeResourceBundle(); | 32 static void InitializeResourceBundle(); |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 std::string stats_filename_; | |
| 36 scoped_ptr<base::StatsTable> stats_table_; | 35 scoped_ptr<base::StatsTable> stats_table_; |
| 37 | 36 |
| 38 DISALLOW_COPY_AND_ASSIGN(ChromeUnitTestSuite); | 37 DISALLOW_COPY_AND_ASSIGN(ChromeUnitTestSuite); |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 #endif // CHROME_TEST_BASE_CHROME_UNIT_TEST_SUITE_H_ | 40 #endif // CHROME_TEST_BASE_CHROME_UNIT_TEST_SUITE_H_ |
| OLD | NEW |