OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "chrome/browser/ui/browser_instant_controller.h" | 5 #include "chrome/browser/ui/browser_instant_controller.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "chrome/browser/infobars/infobar_service.h" | 8 #include "chrome/browser/infobars/infobar_service.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/search/instant_service.h" | 10 #include "chrome/browser/search/instant_service.h" |
11 #include "chrome/browser/search/instant_service_factory.h" | 11 #include "chrome/browser/search/instant_service_factory.h" |
12 #include "chrome/browser/search/search.h" | 12 #include "chrome/browser/search/search.h" |
13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
14 #include "chrome/browser/ui/browser_window.h" | 14 #include "chrome/browser/ui/browser_window.h" |
15 #include "chrome/browser/ui/location_bar/location_bar.h" | 15 #include "chrome/browser/ui/location_bar/location_bar.h" |
16 #include "chrome/browser/ui/search/instant_search_prerenderer.h" | 16 #include "chrome/browser/ui/search/instant_search_prerenderer.h" |
17 #include "chrome/browser/ui/search/search_model.h" | 17 #include "chrome/browser/ui/search/search_model.h" |
18 #include "chrome/browser/ui/search/search_tab_helper.h" | 18 #include "chrome/browser/ui/search/search_tab_helper.h" |
19 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 19 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
20 #include "chrome/common/instant_types.h" | 20 #include "chrome/common/search/instant_types.h" |
21 #include "chrome/common/url_constants.h" | 21 #include "chrome/common/url_constants.h" |
22 #include "components/omnibox/browser/omnibox_popup_model.h" | 22 #include "components/omnibox/browser/omnibox_popup_model.h" |
23 #include "components/omnibox/browser/omnibox_view.h" | 23 #include "components/omnibox/browser/omnibox_view.h" |
24 #include "content/public/browser/browser_thread.h" | 24 #include "content/public/browser/browser_thread.h" |
25 #include "content/public/browser/navigation_controller.h" | 25 #include "content/public/browser/navigation_controller.h" |
26 #include "content/public/browser/render_process_host.h" | 26 #include "content/public/browser/render_process_host.h" |
27 #include "content/public/browser/user_metrics.h" | 27 #include "content/public/browser/user_metrics.h" |
28 #include "content/public/browser/web_contents.h" | 28 #include "content/public/browser/web_contents.h" |
29 #include "content/public/browser/web_contents_user_data.h" | 29 #include "content/public/browser/web_contents_user_data.h" |
30 #include "content/public/common/referrer.h" | 30 #include "content/public/common/referrer.h" |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 params.referrer = content::Referrer(); | 213 params.referrer = content::Referrer(); |
214 params.transition_type = ui::PAGE_TRANSITION_RELOAD; | 214 params.transition_type = ui::PAGE_TRANSITION_RELOAD; |
215 contents->GetController().LoadURLWithParams(params); | 215 contents->GetController().LoadURLWithParams(params); |
216 } else { | 216 } else { |
217 // Reload the contents to ensure that it gets assigned to a | 217 // Reload the contents to ensure that it gets assigned to a |
218 // non-privileged renderer. | 218 // non-privileged renderer. |
219 TabReloader::Reload(contents); | 219 TabReloader::Reload(contents); |
220 } | 220 } |
221 } | 221 } |
222 } | 222 } |
OLD | NEW |