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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/browser_instant_controller.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"
11 #include "chrome/browser/search/instant_service.h"
12 #include "chrome/browser/search/instant_service_factory.h"
13 #include "chrome/browser/search/search.h"
14 #include "chrome/browser/ui/browser.h"
15 #include "chrome/browser/ui/browser_window.h"
16 #include "chrome/browser/ui/omnibox/location_bar.h"
17 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h"
18 #include "chrome/browser/ui/omnibox/omnibox_view.h"
19 #include "chrome/browser/ui/search/instant_search_prerenderer.h"
20 #include "chrome/browser/ui/search/search_model.h"
21 #include "chrome/browser/ui/search/search_tab_helper.h"
22 #include "chrome/browser/ui/tabs/tab_strip_model.h"
23 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h"
24 #include "chrome/common/url_constants.h"
25 #include "content/public/browser/render_process_host.h"
26 #include "content/public/browser/user_metrics.h"
27 #include "content/public/browser/web_contents.h"
28 #include "content/public/browser/web_contents_view.h"
30 using base::UserMetricsAction
;
34 InstantSearchPrerenderer
* GetInstantSearchPrerenderer(Profile
* profile
) {
36 InstantService
* instant_service
=
37 InstantServiceFactory::GetForProfile(profile
);
38 return instant_service
? instant_service
->instant_search_prerenderer() : NULL
;
43 ////////////////////////////////////////////////////////////////////////////////
44 // BrowserInstantController, public:
46 BrowserInstantController::BrowserInstantController(Browser
* browser
)
49 browser_
->search_model()->AddObserver(this);
51 InstantService
* instant_service
=
52 InstantServiceFactory::GetForProfile(profile());
53 instant_service
->AddObserver(this);
56 BrowserInstantController::~BrowserInstantController() {
57 browser_
->search_model()->RemoveObserver(this);
59 InstantService
* instant_service
=
60 InstantServiceFactory::GetForProfile(profile());
61 instant_service
->RemoveObserver(this);
64 bool BrowserInstantController::OpenInstant(WindowOpenDisposition disposition
,
66 // Unsupported dispositions.
67 if (disposition
== NEW_BACKGROUND_TAB
|| disposition
== NEW_WINDOW
||
68 disposition
== NEW_FOREGROUND_TAB
)
71 // The omnibox currently doesn't use other dispositions, so we don't attempt
72 // to handle them. If you hit this DCHECK file a bug and I'll (sky) add
73 // support for the new disposition.
74 DCHECK(disposition
== CURRENT_TAB
) << disposition
;
76 const base::string16
& search_terms
=
77 chrome::ExtractSearchTermsFromURL(profile(), url
);
78 if (search_terms
.empty())
81 InstantSearchPrerenderer
* prerenderer
=
82 GetInstantSearchPrerenderer(profile());
84 if (prerenderer
->CanCommitQuery(GetActiveWebContents(), search_terms
)) {
85 // Submit query to render the prefetched results. Browser will swap the
86 // prerendered contents with the active tab contents.
87 prerenderer
->Commit(search_terms
);
90 prerenderer
->Cancel();
94 // If we will not be replacing search terms from this URL, don't send to
96 if (!chrome::IsQueryExtractionAllowedForURL(profile(), url
))
99 return instant_
.SubmitQuery(search_terms
);
102 Profile
* BrowserInstantController::profile() const {
103 return browser_
->profile();
106 content::WebContents
* BrowserInstantController::GetActiveWebContents() const {
107 return browser_
->tab_strip_model()->GetActiveWebContents();
110 void BrowserInstantController::ActiveTabChanged() {
111 instant_
.ActiveTabChanged();
114 void BrowserInstantController::TabDeactivated(content::WebContents
* contents
) {
115 instant_
.TabDeactivated(contents
);
117 InstantSearchPrerenderer
* prerenderer
=
118 GetInstantSearchPrerenderer(profile());
120 prerenderer
->Cancel();
123 ////////////////////////////////////////////////////////////////////////////////
124 // BrowserInstantController, SearchModelObserver implementation:
126 void BrowserInstantController::ModelChanged(
127 const SearchModel::State
& old_state
,
128 const SearchModel::State
& new_state
) {
129 if (old_state
.mode
!= new_state
.mode
) {
130 const SearchMode
& new_mode
= new_state
.mode
;
132 // Record some actions corresponding to the mode change. Note that to get
133 // the full story, it's necessary to look at other UMA actions as well,
134 // such as tab switches.
135 if (new_mode
.is_search_results())
136 content::RecordAction(UserMetricsAction("InstantExtended.ShowSRP"));
137 else if (new_mode
.is_ntp())
138 content::RecordAction(UserMetricsAction("InstantExtended.ShowNTP"));
140 instant_
.SearchModeChanged(old_state
.mode
, new_mode
);
143 if (old_state
.instant_support
!= new_state
.instant_support
)
144 instant_
.InstantSupportChanged(new_state
.instant_support
);
147 ////////////////////////////////////////////////////////////////////////////////
148 // BrowserInstantController, InstantServiceObserver implementation:
150 void BrowserInstantController::DefaultSearchProviderChanged() {
151 ReloadTabsInInstantProcess();
154 void BrowserInstantController::GoogleURLUpdated() {
155 ReloadTabsInInstantProcess();
158 void BrowserInstantController::ReloadTabsInInstantProcess() {
159 InstantService
* instant_service
=
160 InstantServiceFactory::GetForProfile(profile());
161 if (!instant_service
)
164 TabStripModel
* tab_model
= browser_
->tab_strip_model();
165 int count
= tab_model
->count();
166 for (int index
= 0; index
< count
; ++index
) {
167 content::WebContents
* contents
= tab_model
->GetWebContentsAt(index
);
171 // Send new search URLs to the renderer.
172 content::RenderProcessHost
* rph
= contents
->GetRenderProcessHost();
173 instant_service
->SendSearchURLsToRenderer(rph
);
175 // Reload the contents to ensure that it gets assigned to a non-priviledged
177 if (!instant_service
->IsInstantProcess(rph
->GetID()))
179 contents
->GetController().Reload(false);