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/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/scoped_temp_dir.h" | 9 #include "base/scoped_temp_dir.h" |
10 #include "chrome/browser/importer/profile_writer.h" | 10 #include "chrome/browser/importer/profile_writer.h" |
11 #include "content/test/test_browser_thread.h" | 11 #include "content/public/test/test_browser_thread.h" |
12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
13 | 13 |
14 namespace importer { | 14 namespace importer { |
15 class ImporterProgressObserver; | 15 class ImporterProgressObserver; |
16 } | 16 } |
17 | 17 |
18 class TestingProfile; | 18 class TestingProfile; |
19 | 19 |
20 const int kMaxPathSize = 5; | 20 const int kMaxPathSize = 5; |
21 | 21 |
(...skipping 27 matching lines...) Expand all Loading... |
49 ScopedTempDir temp_dir_; | 49 ScopedTempDir temp_dir_; |
50 scoped_ptr<TestingProfile> profile_; | 50 scoped_ptr<TestingProfile> profile_; |
51 | 51 |
52 private: | 52 private: |
53 MessageLoopForUI message_loop_; | 53 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 |