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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/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/app/scoped_ole_initializer.h" | |
16 #include "chrome/browser/browser_process_impl.h" | 15 #include "chrome/browser/browser_process_impl.h" |
17 #include "chrome_frame/test/net/process_singleton_subclass.h" | 16 #include "chrome_frame/test/net/process_singleton_subclass.h" |
18 #include "chrome_frame/test/net/test_automation_provider.h" | 17 #include "chrome_frame/test/net/test_automation_provider.h" |
19 #include "chrome_frame/test/test_server.h" | 18 #include "chrome_frame/test/test_server.h" |
20 #include "chrome_frame/test_utils.h" | 19 #include "chrome_frame/test_utils.h" |
21 #include "content/public/browser/browser_main_parts.h" | 20 #include "content/public/browser/browser_main_parts.h" |
22 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
23 #include "net/base/net_test_suite.h" | 22 #include "net/base/net_test_suite.h" |
24 #include "net/url_request/url_request_test_util.h" | 23 #include "net/url_request/url_request_test_util.h" |
25 | 24 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 // See http://crbug.com/114369 . | 140 // See http://crbug.com/114369 . |
142 void OverrideHttpHost(); | 141 void OverrideHttpHost(); |
143 | 142 |
144 bool launch_browser_; | 143 bool launch_browser_; |
145 bool prompt_after_setup_; | 144 bool prompt_after_setup_; |
146 | 145 |
147 DISALLOW_COPY_AND_ASSIGN(CFUrlRequestUnittestRunner); | 146 DISALLOW_COPY_AND_ASSIGN(CFUrlRequestUnittestRunner); |
148 }; | 147 }; |
149 | 148 |
150 #endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ | 149 #endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ |
OLD | NEW |