| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_ |
| 6 #define CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_ | 6 #define CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "chrome/browser/importer/profile_writer.h" | 10 #include "chrome/browser/importer/profile_writer.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ImporterTest(); | 43 ImporterTest(); |
| 44 virtual ~ImporterTest(); | 44 virtual ~ImporterTest(); |
| 45 | 45 |
| 46 protected: | 46 protected: |
| 47 virtual void SetUp() OVERRIDE; | 47 virtual void SetUp() OVERRIDE; |
| 48 | 48 |
| 49 base::ScopedTempDir temp_dir_; | 49 base::ScopedTempDir temp_dir_; |
| 50 scoped_ptr<TestingProfile> profile_; | 50 scoped_ptr<TestingProfile> profile_; |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 MessageLoopForUI message_loop_; | 53 base::MessageLoopForUI message_loop_; |
| 54 content::TestBrowserThread ui_thread_; | 54 content::TestBrowserThread ui_thread_; |
| 55 content::TestBrowserThread file_thread_; | 55 content::TestBrowserThread file_thread_; |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_ | 58 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_UNITTEST_UTILS_H_ |
| OLD | NEW |