| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "HTTPSRequestTest.ClientAuthTest", | 212 "HTTPSRequestTest.ClientAuthTest", |
| 213 | 213 |
| 214 // More HTTPS tests failing due to certificate dialogs. | 214 // More HTTPS tests failing due to certificate dialogs. |
| 215 // http://crbug.com/102991 | 215 // http://crbug.com/102991 |
| 216 "URLRequestTestHTTP.HTTPSToHTTPRedirectNoRefererTest", | 216 "URLRequestTestHTTP.HTTPSToHTTPRedirectNoRefererTest", |
| 217 "HTTPSRequestTest.HTTPSGetTest", | 217 "HTTPSRequestTest.HTTPSGetTest", |
| 218 | 218 |
| 219 // Tests chrome's network stack's cache (might not apply to CF). | 219 // Tests chrome's network stack's cache (might not apply to CF). |
| 220 "URLRequestTestHTTP.VaryHeader", | 220 "URLRequestTestHTTP.VaryHeader", |
| 221 "URLRequestTestHTTP.GetZippedTest", | 221 "URLRequestTestHTTP.GetZippedTest", |
| 222 "URLRequestTestHTTP.DeferredRedirect_ReleaseCacheEntry", |
| 222 | 223 |
| 223 // Tests that requests can be blocked asynchronously in states | 224 // Tests that requests can be blocked asynchronously in states |
| 224 // OnBeforeURLRequest, OnBeforeSendHeaders and OnHeadersReceived. At least | 225 // OnBeforeURLRequest, OnBeforeSendHeaders and OnHeadersReceived. At least |
| 225 // the second state is not supported by CF. | 226 // the second state is not supported by CF. |
| 226 "URLRequestTestHTTP.NetworkDelegateBlockAsynchronously", | 227 "URLRequestTestHTTP.NetworkDelegateBlockAsynchronously", |
| 227 | 228 |
| 228 // Tests for cancelling requests in states OnBeforeSendHeaders and | 229 // Tests for cancelling requests in states OnBeforeSendHeaders and |
| 229 // OnHeadersReceived, which do not seem supported by CF. | 230 // OnHeadersReceived, which do not seem supported by CF. |
| 230 "URLRequestTestHTTP.NetworkDelegateCancelRequestSynchronously2", | 231 "URLRequestTestHTTP.NetworkDelegateCancelRequestSynchronously2", |
| 231 "URLRequestTestHTTP.NetworkDelegateCancelRequestSynchronously3", | 232 "URLRequestTestHTTP.NetworkDelegateCancelRequestSynchronously3", |
| (...skipping 760 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 |