| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // ChromeFrame. We don't support this. | 272 // ChromeFrame. We don't support this. |
| 273 "URLRequestTestHTTP.TestPostChunkedDataAfterStart", | 273 "URLRequestTestHTTP.TestPostChunkedDataAfterStart", |
| 274 | 274 |
| 275 // Do not work in CF, it may well be that IE is unconditionally | 275 // Do not work in CF, it may well be that IE is unconditionally |
| 276 // adding Accept-Encoding header by default to outgoing requests. | 276 // adding Accept-Encoding header by default to outgoing requests. |
| 277 "URLRequestTestHTTP.DefaultAcceptEncoding", | 277 "URLRequestTestHTTP.DefaultAcceptEncoding", |
| 278 "URLRequestTestHTTP.OverrideAcceptEncoding", | 278 "URLRequestTestHTTP.OverrideAcceptEncoding", |
| 279 | 279 |
| 280 // Not supported in ChromeFrame as we use IE's network stack. | 280 // Not supported in ChromeFrame as we use IE's network stack. |
| 281 "URLRequestTest.NetworkDelegateProxyError", | 281 "URLRequestTest.NetworkDelegateProxyError", |
| 282 "URLRequestTest.AcceptClockSkewCookieWithWrongDateTimezone", |
| 282 | 283 |
| 283 // URLRequestAutomationJob needs to support NeedsAuth. | 284 // URLRequestAutomationJob needs to support NeedsAuth. |
| 284 // http://crbug.com/98446 | 285 // http://crbug.com/98446 |
| 285 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredSyncNoAction", | 286 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredSyncNoAction", |
| 286 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredSyncSetAuth", | 287 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredSyncSetAuth", |
| 287 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredSyncCancel", | 288 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredSyncCancel", |
| 288 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncNoAction", | 289 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncNoAction", |
| 289 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncSetAuth", | 290 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncSetAuth", |
| 290 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncCancel", | 291 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncCancel", |
| 291 | 292 |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 // content::InitializeSandboxInfo(&sandbox_info); | 949 // content::InitializeSandboxInfo(&sandbox_info); |
| 949 FakeMainDelegate delegate; | 950 FakeMainDelegate delegate; |
| 950 content::ContentMain( | 951 content::ContentMain( |
| 951 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), | 952 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), |
| 952 &sandbox_info, | 953 &sandbox_info, |
| 953 &delegate); | 954 &delegate); |
| 954 | 955 |
| 955 // Note: In debug builds, we ExitProcess during PostDestroyThreads. | 956 // Note: In debug builds, we ExitProcess during PostDestroyThreads. |
| 956 return g_test_suite->test_result(); | 957 return g_test_suite->test_result(); |
| 957 } | 958 } |
| OLD | NEW |