| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/time.h" | 5 #include "base/time.h" |
| 6 #include "chrome/app/chrome_command_ids.h" | 6 #include "chrome/app/chrome_command_ids.h" |
| 7 #include "chrome/browser/browser.h" | |
| 8 #include "chrome/browser/prefs/pref_service.h" | 7 #include "chrome/browser/prefs/pref_service.h" |
| 9 #include "chrome/browser/profile.h" | 8 #include "chrome/browser/profile.h" |
| 10 #include "chrome/browser/tab_contents/interstitial_page.h" | 9 #include "chrome/browser/tab_contents/interstitial_page.h" |
| 11 #include "chrome/browser/tab_contents/navigation_entry.h" | 10 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 12 #include "chrome/browser/tab_contents/tab_contents.h" | 11 #include "chrome/browser/tab_contents/tab_contents.h" |
| 13 #include "chrome/browser/tabs/tab_strip_model.h" | 12 #include "chrome/browser/tabs/tab_strip_model.h" |
| 13 #include "chrome/browser/ui/browser.h" |
| 14 #include "chrome/browser/ui/browser_navigator.h" | 14 #include "chrome/browser/ui/browser_navigator.h" |
| 15 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
| 16 #include "chrome/test/in_process_browser_test.h" | 16 #include "chrome/test/in_process_browser_test.h" |
| 17 #include "chrome/test/ui_test_utils.h" | 17 #include "chrome/test/ui_test_utils.h" |
| 18 #include "net/base/cert_status_flags.h" | 18 #include "net/base/cert_status_flags.h" |
| 19 #include "net/test/test_server.h" | 19 #include "net/test/test_server.h" |
| 20 | 20 |
| 21 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); | 21 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); |
| 22 | 22 |
| 23 class SSLUITest : public InProcessBrowserTest { | 23 class SSLUITest : public InProcessBrowserTest { |
| (...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 | 1080 |
| 1081 // Visit a page over https that contains a frame with a redirect. | 1081 // Visit a page over https that contains a frame with a redirect. |
| 1082 | 1082 |
| 1083 // XMLHttpRequest insecure content in synchronous mode. | 1083 // XMLHttpRequest insecure content in synchronous mode. |
| 1084 | 1084 |
| 1085 // XMLHttpRequest insecure content in asynchronous mode. | 1085 // XMLHttpRequest insecure content in asynchronous mode. |
| 1086 | 1086 |
| 1087 // XMLHttpRequest over bad ssl in synchronous mode. | 1087 // XMLHttpRequest over bad ssl in synchronous mode. |
| 1088 | 1088 |
| 1089 // XMLHttpRequest over OK ssl in synchronous mode. | 1089 // XMLHttpRequest over OK ssl in synchronous mode. |
| OLD | NEW |