| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 base::win::ScopedHandle test_thread_; | 98 base::win::ScopedHandle test_thread_; |
| 99 DWORD test_thread_id_; | 99 DWORD test_thread_id_; |
| 100 | 100 |
| 101 scoped_ptr<test_server::SimpleWebServer> test_http_server_; | 101 scoped_ptr<test_server::SimpleWebServer> test_http_server_; |
| 102 test_server::SimpleResponse chrome_frame_html_; | 102 test_server::SimpleResponse chrome_frame_html_; |
| 103 | 103 |
| 104 // The fake chrome instance. This instance owns the UI message loop | 104 // The fake chrome instance. This instance owns the UI message loop |
| 105 // on the main thread. | 105 // on the main thread. |
| 106 FakeExternalTab fake_chrome_; | 106 FakeExternalTab fake_chrome_; |
| 107 scoped_ptr<ProcessSingletonSubclass> pss_subclass_; | 107 scoped_ptr<ProcessSingletonSubclass> pss_subclass_; |
| 108 scoped_ptr<DeprecatedBrowserThread> main_thread_; | 108 scoped_ptr<content::DeprecatedBrowserThread> main_thread_; |
| 109 ScopedChromeFrameRegistrar registrar_; | 109 ScopedChromeFrameRegistrar registrar_; |
| 110 int test_result_; | 110 int test_result_; |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 #endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ | 113 #endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_ |
| OLD | NEW |