| 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "chrome/test/base/ui_test_utils.h" | 21 #include "chrome/test/base/ui_test_utils.h" |
| 22 #include "content/public/browser/interstitial_page.h" | 22 #include "content/public/browser/interstitial_page.h" |
| 23 #include "content/public/browser/navigation_controller.h" | 23 #include "content/public/browser/navigation_controller.h" |
| 24 #include "content/public/browser/navigation_entry.h" | 24 #include "content/public/browser/navigation_entry.h" |
| 25 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
| 26 #include "content/public/browser/render_view_host.h" | 26 #include "content/public/browser/render_view_host.h" |
| 27 #include "content/public/browser/web_contents.h" | 27 #include "content/public/browser/web_contents.h" |
| 28 #include "content/public/browser/web_contents_observer.h" | 28 #include "content/public/browser/web_contents_observer.h" |
| 29 #include "content/public/common/security_style.h" | 29 #include "content/public/common/security_style.h" |
| 30 #include "content/public/common/ssl_status.h" | 30 #include "content/public/common/ssl_status.h" |
| 31 #include "content/test/test_renderer_host.h" | 31 #include "content/public/test/test_renderer_host.h" |
| 32 #include "net/base/cert_status_flags.h" | 32 #include "net/base/cert_status_flags.h" |
| 33 #include "net/test/test_server.h" | 33 #include "net/test/test_server.h" |
| 34 | 34 |
| 35 using content::InterstitialPage; | 35 using content::InterstitialPage; |
| 36 using content::NavigationController; | 36 using content::NavigationController; |
| 37 using content::NavigationEntry; | 37 using content::NavigationEntry; |
| 38 using content::SSLStatus; | 38 using content::SSLStatus; |
| 39 using content::WebContents; | 39 using content::WebContents; |
| 40 | 40 |
| 41 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); | 41 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); |
| (...skipping 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 | 1450 |
| 1451 // Visit a page over https that contains a frame with a redirect. | 1451 // Visit a page over https that contains a frame with a redirect. |
| 1452 | 1452 |
| 1453 // XMLHttpRequest insecure content in synchronous mode. | 1453 // XMLHttpRequest insecure content in synchronous mode. |
| 1454 | 1454 |
| 1455 // XMLHttpRequest insecure content in asynchronous mode. | 1455 // XMLHttpRequest insecure content in asynchronous mode. |
| 1456 | 1456 |
| 1457 // XMLHttpRequest over bad ssl in synchronous mode. | 1457 // XMLHttpRequest over bad ssl in synchronous mode. |
| 1458 | 1458 |
| 1459 // XMLHttpRequest over OK ssl in synchronous mode. | 1459 // XMLHttpRequest over OK ssl in synchronous mode. |
| OLD | NEW |