| 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 <utility> | 5 #include <utility> |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/bind_helpers.h" | 9 #include "base/bind_helpers.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/message_loop/message_loop.h" |
| 14 #include "base/metrics/field_trial.h" | 15 #include "base/metrics/field_trial.h" |
| 15 #include "base/single_thread_task_runner.h" | 16 #include "base/single_thread_task_runner.h" |
| 16 #include "base/strings/string_split.h" | 17 #include "base/strings/string_split.h" |
| 17 #include "base/strings/string_util.h" | 18 #include "base/strings/string_util.h" |
| 18 #include "base/strings/stringprintf.h" | 19 #include "base/strings/stringprintf.h" |
| 19 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
| 20 #include "base/test/histogram_tester.h" | 21 #include "base/test/histogram_tester.h" |
| 21 #include "base/test/scoped_feature_list.h" | 22 #include "base/test/scoped_feature_list.h" |
| 22 #include "base/test/simple_test_clock.h" | 23 #include "base/test/simple_test_clock.h" |
| 23 #include "base/threading/thread_restrictions.h" | 24 #include "base/threading/thread_restrictions.h" |
| (...skipping 4383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4407 | 4408 |
| 4408 // Visit a page over https that contains a frame with a redirect. | 4409 // Visit a page over https that contains a frame with a redirect. |
| 4409 | 4410 |
| 4410 // XMLHttpRequest insecure content in synchronous mode. | 4411 // XMLHttpRequest insecure content in synchronous mode. |
| 4411 | 4412 |
| 4412 // XMLHttpRequest insecure content in asynchronous mode. | 4413 // XMLHttpRequest insecure content in asynchronous mode. |
| 4413 | 4414 |
| 4414 // XMLHttpRequest over bad ssl in synchronous mode. | 4415 // XMLHttpRequest over bad ssl in synchronous mode. |
| 4415 | 4416 |
| 4416 // XMLHttpRequest over OK ssl in synchronous mode. | 4417 // XMLHttpRequest over OK ssl in synchronous mode. |
| OLD | NEW |