| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <Windows.h> | 5 #include <Windows.h> |
| 6 #include <Wincrypt.h> | 6 #include <Wincrypt.h> |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/common/filter_policy.h" |
| 10 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
| 11 #include "chrome/test/automation/browser_proxy.h" | 12 #include "chrome/test/automation/browser_proxy.h" |
| 12 #include "chrome/test/automation/tab_proxy.h" | 13 #include "chrome/test/automation/tab_proxy.h" |
| 13 #include "chrome/test/ui/ui_test.h" | 14 #include "chrome/test/ui/ui_test.h" |
| 14 #include "net/base/ssl_test_util.h" | 15 #include "net/base/ssl_test_util.h" |
| 15 #include "net/url_request/url_request_unittest.h" | 16 #include "net/url_request/url_request_unittest.h" |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 19 const wchar_t kDocRoot[] = L"chrome/test/data"; | 20 const wchar_t kDocRoot[] = L"chrome/test/data"; |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 | 924 |
| 924 // Visit a page over https that contains a frame with a redirect. | 925 // Visit a page over https that contains a frame with a redirect. |
| 925 | 926 |
| 926 // XMLHttpRequest mixed in synchronous mode. | 927 // XMLHttpRequest mixed in synchronous mode. |
| 927 | 928 |
| 928 // XMLHttpRequest mixed in asynchronous mode. | 929 // XMLHttpRequest mixed in asynchronous mode. |
| 929 | 930 |
| 930 // XMLHttpRequest over bad ssl in synchronous mode. | 931 // XMLHttpRequest over bad ssl in synchronous mode. |
| 931 | 932 |
| 932 // XMLHttpRequest over OK ssl in synchronous mode. | 933 // XMLHttpRequest over OK ssl in synchronous mode. |
| OLD | NEW |