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_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ | 5 #ifndef CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ |
6 #define CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ | 6 #define CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/cancelable_callback.h" | 10 #include "base/cancelable_callback.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/process.h" | 13 #include "base/process.h" |
14 #include "base/win/scoped_handle.h" | 14 #include "base/win/scoped_handle.h" |
15 #include "chrome/browser/browser_process_impl.h" | 15 #include "chrome/browser/browser_process_impl.h" |
16 #include "chrome_frame/test/net/test_automation_provider.h" | 16 #include "chrome_frame/test/net/test_automation_provider.h" |
17 #include "chrome_frame/test/test_server.h" | 17 #include "chrome_frame/test/test_server.h" |
18 #include "chrome_frame/test_utils.h" | 18 #include "chrome_frame/test_utils.h" |
19 #include "content/public/browser/browser_main_parts.h" | 19 #include "content/public/browser/browser_main_parts.h" |
20 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
21 #include "net/base/net_test_suite.h" | 21 #include "net/test/net_test_suite.h" |
22 | 22 |
23 class CommandLine; | 23 class CommandLine; |
24 class FakeBrowserProcessImpl; | 24 class FakeBrowserProcessImpl; |
25 class ProcessSingleton; | 25 class ProcessSingleton; |
26 | 26 |
27 namespace net { | 27 namespace net { |
28 class ScopedCustomUrlRequestTestHttpHost; | 28 class ScopedCustomUrlRequestTestHttpHost; |
29 } // namespace net | 29 } // namespace net |
30 | 30 |
31 namespace content { | 31 namespace content { |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 scoped_ptr<ProcessSingleton> process_singleton_; | 157 scoped_ptr<ProcessSingleton> process_singleton_; |
158 base::CancelableClosure timeout_closure_; | 158 base::CancelableClosure timeout_closure_; |
159 scoped_ptr<logging_win::FileLogger> file_logger_; | 159 scoped_ptr<logging_win::FileLogger> file_logger_; |
160 base::FilePath log_file_; | 160 base::FilePath log_file_; |
161 scoped_ptr<chrome_frame_test::IEConfigurator> ie_configurator_; | 161 scoped_ptr<chrome_frame_test::IEConfigurator> ie_configurator_; |
162 | 162 |
163 DISALLOW_COPY_AND_ASSIGN(CFUrlRequestUnittestRunner); | 163 DISALLOW_COPY_AND_ASSIGN(CFUrlRequestUnittestRunner); |
164 }; | 164 }; |
165 | 165 |
166 #endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ | 166 #endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ |
OLD | NEW |