| 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 #include "chrome_frame/test/net/fake_external_tab.h" | 5 #include "chrome_frame/test/net/fake_external_tab.h" |
| 6 | 6 |
| 7 #include <atlbase.h> | 7 #include <atlbase.h> |
| 8 #include <atlcom.h> | 8 #include <atlcom.h> |
| 9 #include <exdisp.h> | 9 #include <exdisp.h> |
| 10 #include <Winsock2.h> | 10 #include <Winsock2.h> |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 257 |
| 258 // TODO(ananta): This test has been consistently failing. Disabling it for | 258 // TODO(ananta): This test has been consistently failing. Disabling it for |
| 259 // now. | 259 // now. |
| 260 "URLRequestTestHTTP.GetTest_NoCache", | 260 "URLRequestTestHTTP.GetTest_NoCache", |
| 261 | 261 |
| 262 // These tests use HTTPS, and IE's trust store does not have the test | 262 // These tests use HTTPS, and IE's trust store does not have the test |
| 263 // certs. So these tests time out waiting for user input. The | 263 // certs. So these tests time out waiting for user input. The |
| 264 // functionality they test (HTTP Strict Transport Security and | 264 // functionality they test (HTTP Strict Transport Security and |
| 265 // HTTP-based Public Key Pinning) does not work in Chrome Frame anyway. | 265 // HTTP-based Public Key Pinning) does not work in Chrome Frame anyway. |
| 266 "URLRequestTestHTTP.ProcessPKP", | 266 "URLRequestTestHTTP.ProcessPKP", |
| 267 "URLRequestTestHTTP.ProcessPKP_PrivacyMode", |
| 267 "URLRequestTestHTTP.ProcessSTS", | 268 "URLRequestTestHTTP.ProcessSTS", |
| 268 "URLRequestTestHTTP.ProcessSTSOnce", | 269 "URLRequestTestHTTP.ProcessSTSOnce", |
| 269 "URLRequestTestHTTP.ProcessSTSAndPKP", | 270 "URLRequestTestHTTP.ProcessSTSAndPKP", |
| 270 "URLRequestTestHTTP.ProcessSTSAndPKP2", | 271 "URLRequestTestHTTP.ProcessSTSAndPKP2", |
| 271 | 272 |
| 272 // These tests have been disabled as the Chrome cookie policies don't make | 273 // These tests have been disabled as the Chrome cookie policies don't make |
| 273 // sense or have not been implemented for the host network stack. | 274 // sense or have not been implemented for the host network stack. |
| 274 "URLRequestTest.DoNotSaveCookies_ViaPolicy", | 275 "URLRequestTest.DoNotSaveCookies_ViaPolicy", |
| 275 "URLRequestTest.DoNotSendCookies_ViaPolicy", | 276 "URLRequestTest.DoNotSendCookies_ViaPolicy", |
| 276 "URLRequestTest.DoNotSaveCookies_ViaPolicy_Async", | 277 "URLRequestTest.DoNotSaveCookies_ViaPolicy_Async", |
| (...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 content::InitializeSandboxInfo(&sandbox_info); | 993 content::InitializeSandboxInfo(&sandbox_info); |
| 993 FakeMainDelegate delegate; | 994 FakeMainDelegate delegate; |
| 994 content::ContentMain( | 995 content::ContentMain( |
| 995 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), | 996 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), |
| 996 &sandbox_info, | 997 &sandbox_info, |
| 997 &delegate); | 998 &delegate); |
| 998 | 999 |
| 999 // Note: In debug builds, we ExitProcess during PostDestroyThreads. | 1000 // Note: In debug builds, we ExitProcess during PostDestroyThreads. |
| 1000 return g_test_suite->test_result(); | 1001 return g_test_suite->test_result(); |
| 1001 } | 1002 } |
| OLD | NEW |