| 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/filter_policy.h" |
| 11 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
| 12 #include "chrome/test/automation/browser_proxy.h" | 12 #include "chrome/test/automation/browser_proxy.h" |
| 13 #include "chrome/test/automation/tab_proxy.h" | 13 #include "chrome/test/automation/tab_proxy.h" |
| 14 #include "chrome/test/ui/ui_test.h" | 14 #include "chrome/test/ui/ui_test.h" |
| 15 #include "net/base/ssl_test_util.h" | 15 #include "net/socket/ssl_test_util.h" |
| 16 #include "net/url_request/url_request_unittest.h" | 16 #include "net/url_request/url_request_unittest.h" |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 const wchar_t kDocRoot[] = L"chrome/test/data"; | 20 const wchar_t kDocRoot[] = L"chrome/test/data"; |
| 21 | 21 |
| 22 class SSLUITest : public UITest { | 22 class SSLUITest : public UITest { |
| 23 protected: | 23 protected: |
| 24 SSLUITest() { | 24 SSLUITest() { |
| 25 dom_automation_enabled_ = true; | 25 dom_automation_enabled_ = true; |
| (...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 | 1012 |
| 1013 // Visit a page over https that contains a frame with a redirect. | 1013 // Visit a page over https that contains a frame with a redirect. |
| 1014 | 1014 |
| 1015 // XMLHttpRequest mixed in synchronous mode. | 1015 // XMLHttpRequest mixed in synchronous mode. |
| 1016 | 1016 |
| 1017 // XMLHttpRequest mixed in asynchronous mode. | 1017 // XMLHttpRequest mixed in asynchronous mode. |
| 1018 | 1018 |
| 1019 // XMLHttpRequest over bad ssl in synchronous mode. | 1019 // XMLHttpRequest over bad ssl in synchronous mode. |
| 1020 | 1020 |
| 1021 // XMLHttpRequest over OK ssl in synchronous mode. | 1021 // XMLHttpRequest over OK ssl in synchronous mode. |
| OLD | NEW |