OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/base_switches.h" | 5 #include "base/base_switches.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/prefs/pref_service.h" | |
8 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/net/prediction_options.h" | 8 #include "chrome/browser/net/prediction_options.h" |
10 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
12 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 11 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
13 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
14 #include "chrome/test/base/in_process_browser_test.h" | 13 #include "chrome/test/base/in_process_browser_test.h" |
15 #include "chrome/test/base/ui_test_utils.h" | 14 #include "chrome/test/base/ui_test_utils.h" |
| 15 #include "components/prefs/pref_service.h" |
16 #include "content/public/browser/render_frame_host.h" | 16 #include "content/public/browser/render_frame_host.h" |
17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
18 #include "content/public/test/browser_test_utils.h" | 18 #include "content/public/test/browser_test_utils.h" |
19 #include "net/base/network_change_notifier.h" | 19 #include "net/base/network_change_notifier.h" |
20 #include "net/test/embedded_test_server/embedded_test_server.h" | 20 #include "net/test/embedded_test_server/embedded_test_server.h" |
21 | 21 |
22 using chrome_browser_net::NetworkPredictionOptions; | 22 using chrome_browser_net::NetworkPredictionOptions; |
23 using net::NetworkChangeNotifier; | 23 using net::NetworkChangeNotifier; |
24 | 24 |
25 namespace { | 25 namespace { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 Browser::CreateParams(incognito_profile, browser()->host_desktop_type())); | 144 Browser::CreateParams(incognito_profile, browser()->host_desktop_type())); |
145 | 145 |
146 // Navigate just to have a tab in this window, otherwise there is no | 146 // Navigate just to have a tab in this window, otherwise there is no |
147 // WebContents for the incognito browser. | 147 // WebContents for the incognito browser. |
148 OpenURLOffTheRecord(browser()->profile(), GURL("about:blank")); | 148 OpenURLOffTheRecord(browser()->profile(), GURL("about:blank")); |
149 | 149 |
150 EXPECT_TRUE(RunPrefetchExperiment(true, incognito_browser)); | 150 EXPECT_TRUE(RunPrefetchExperiment(true, incognito_browser)); |
151 } | 151 } |
152 | 152 |
153 } // namespace | 153 } // namespace |
OLD | NEW |