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/extensions/extension_service.h" | |
9 #include "chrome/browser/extensions/extension_web_ui.h" | |
10 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/browser/search/instant_service.h" | 9 #include "chrome/browser/search/instant_service.h" |
12 #include "chrome/browser/search/instant_service_factory.h" | 10 #include "chrome/browser/search/instant_service_factory.h" |
13 #include "chrome/browser/search/search.h" | 11 #include "chrome/browser/search/search.h" |
14 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
15 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
16 #include "chrome/browser/ui/location_bar/location_bar.h" | 14 #include "chrome/browser/ui/location_bar/location_bar.h" |
17 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" | 15 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" |
18 #include "chrome/browser/ui/omnibox/omnibox_view.h" | 16 #include "chrome/browser/ui/omnibox/omnibox_view.h" |
19 #include "chrome/browser/ui/search/instant_search_prerenderer.h" | 17 #include "chrome/browser/ui/search/instant_search_prerenderer.h" |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 content::RenderProcessHost* rph = contents->GetRenderProcessHost(); | 156 content::RenderProcessHost* rph = contents->GetRenderProcessHost(); |
159 instant_service->SendSearchURLsToRenderer(rph); | 157 instant_service->SendSearchURLsToRenderer(rph); |
160 | 158 |
161 // Reload the contents to ensure that it gets assigned to a non-priviledged | 159 // Reload the contents to ensure that it gets assigned to a non-priviledged |
162 // renderer. | 160 // renderer. |
163 if (!instant_service->IsInstantProcess(rph->GetID())) | 161 if (!instant_service->IsInstantProcess(rph->GetID())) |
164 continue; | 162 continue; |
165 contents->GetController().Reload(false); | 163 contents->GetController().Reload(false); |
166 } | 164 } |
167 } | 165 } |
OLD | NEW |