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