1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_INSTANT_INSTANT_CONTROLLER_H_
#define CHROME_BROWSER_INSTANT_INSTANT_CONTROLLER_H_
#pragma once
#include <set>
#include <string>
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "base/string16.h"
#include "base/timer.h"
#include "chrome/browser/instant/instant_commit_type.h"
#include "chrome/browser/instant/instant_loader_delegate.h"
#include "chrome/browser/search_engines/template_url_id.h"
#include "chrome/common/page_transition_types.h"
#include "gfx/native_widget_types.h"
#include "gfx/rect.h"
#include "googleurl/src/gurl.h"
struct AutocompleteMatch;
class InstantDelegate;
class InstantLoaderManager;
class PrefService;
class Profile;
class TabContents;
class TabContentsWrapper;
class TemplateURL;
// InstantController maintains a TabContents that is intended to give a preview
// of a URL. InstantController is owned by Browser.
//
// At any time the TabContents maintained by InstantController may be destroyed
// by way of |DestroyPreviewContents|, which results in |HideInstant| being
// invoked on the delegate. Similarly the preview may be committed at any time
// by invoking |CommitCurrentPreview|, which results in |CommitInstant|
// being invoked on the delegate.
class InstantController : public InstantLoaderDelegate {
public:
// Variations of instant support.
// TODO(sky): nuke these when we decide the default behavior.
enum Type {
// NOTE: these values are persisted to prefs. Don't change them!
FIRST_TYPE = 0,
// Search results are shown for the best guess of what we think the user was
// planning on typing.
PREDICTIVE_TYPE = 0,
// Search results are shown for exactly what was typed.
VERBATIM_TYPE,
// Variant of predictive that does not auto-complete after a delay.
PREDICTIVE_NO_AUTO_COMPLETE_TYPE,
LAST_TYPE = PREDICTIVE_NO_AUTO_COMPLETE_TYPE
};
InstantController(Profile* profile, InstantDelegate* delegate);
~InstantController();
// Registers instant related preferences.
static void RegisterUserPrefs(PrefService* prefs);
// Records instant metrics.
static void RecordMetrics(Profile* profile);
// Returns true if either type of instant is enabled.
static bool IsEnabled(Profile* profile);
// Returns true if the specified type of instant is enabled.
static bool IsEnabled(Profile* profile, Type type);
// Enables instant.
static void Enable(Profile* profile);
// Disables instant.
static void Disable(Profile* profile);
// Invoked as the user types in the omnibox with the url to navigate to. If
// the url is empty and there is a preview TabContents it is destroyed. If url
// is non-empty and the preview TabContents has not been created it is
// created. If |verbatim| is true search results are shown for |user_text|
// rather than the best guess as to what the search thought the user meant.
// |verbatim| only matters if the AutocompleteMatch is for a search engine
// that supports instant.
void Update(TabContentsWrapper* tab_contents,
const AutocompleteMatch& match,
const string16& user_text,
bool verbatim,
string16* suggested_text);
// Sets the bounds of the omnibox (in screen coordinates). The bounds are
// remembered until the preview is committed or destroyed. This is only used
// when showing results for a search provider that supports instant.
void SetOmniboxBounds(const gfx::Rect& bounds);
// Destroys the preview TabContents. Does nothing if the preview TabContents
// has not been created.
void DestroyPreviewContents();
// Returns true if we're showing the last URL passed to |Update|. If this is
// false a commit does not result in committing the last url passed to update.
// A return value of false happens if we're in the process of determining if
// the page supports instant.
bool IsCurrent();
// Invoked when the user does some gesture that should trigger making the
// current previewed page the permanent page.
void CommitCurrentPreview(InstantCommitType type);
// Sets InstantController so that when the mouse is released the preview is
// committed.
void SetCommitOnMouseUp();
bool commit_on_mouse_up() const { return commit_on_mouse_up_; }
// Returns true if the mouse is down as the result of activating the preview
// content.
bool IsMouseDownFromActivate();
// The autocomplete edit that was initiating the current instant session has
// lost focus. Commit or discard the preview accordingly.
void OnAutocompleteLostFocus(gfx::NativeView view_gaining_focus);
// Releases the preview TabContents passing ownership to the caller. This is
// intended to be called when the preview TabContents is committed. This does
// not notify the delegate.
// WARNING: be sure and invoke CompleteRelease after adding the returned
// TabContents to a tabstrip.
TabContentsWrapper* ReleasePreviewContents(InstantCommitType type);
// Does cleanup after the preview contents has been added to the tabstrip.
// Invoke this if you explicitly invoke ReleasePreviewContents.
void CompleteRelease(TabContents* tab);
// TabContents the match is being shown for.
TabContentsWrapper* tab_contents() const { return tab_contents_; }
// The preview TabContents; may be null.
TabContentsWrapper* GetPreviewContents();
// Returns true if the preview TabContents is active. In some situations this
// may return false yet preview_contents() returns non-NULL.
bool is_active() const { return is_active_; }
// Returns the transition type of the last AutocompleteMatch passed to Update.
PageTransition::Type last_transition_type() const {
return last_transition_type_;
}
// Are we showing instant results?
bool IsShowingInstant();
// InstantLoaderDelegate
virtual void ShowInstantLoader(InstantLoader* loader);
virtual void SetSuggestedTextFor(InstantLoader* loader,
const string16& text);
virtual gfx::Rect GetInstantBounds();
virtual bool ShouldCommitInstantOnMouseUp();
virtual void CommitInstantLoader(InstantLoader* loader);
virtual void InstantLoaderDoesntSupportInstant(InstantLoader* loader,
bool needs_reload,
const GURL& url_to_load);
private:
// Returns true if we should update immediately.
bool ShouldUpdateNow(TemplateURLID instant_id, const GURL& url);
// Schedules a delayed update to load the specified url.
void ScheduleUpdate(const GURL& url);
// Invoked from the timer to process the last scheduled url.
void ProcessScheduledUpdate();
// Updates InstantLoaderManager and its current InstantLoader. This is invoked
// internally from Update.
void UpdateLoader(const TemplateURL* template_url,
const GURL& url,
PageTransition::Type transition_type,
const string16& user_text,
bool verbatim,
string16* suggested_text);
// Returns true if we should show preview for |match|.
bool ShouldShowPreviewFor(const AutocompleteMatch& match);
// Marks the specified search engine id as not supporting instant.
void BlacklistFromInstant(TemplateURLID id);
// Returns true if the specified id has been blacklisted from supporting
// instant.
bool IsBlacklistedFromInstant(TemplateURLID id);
// Clears the set of search engines blacklisted.
void ClearBlacklist();
// Returns the TemplateURL to use for the specified AutocompleteMatch, or NULL
// if non TemplateURL should be used.
const TemplateURL* GetTemplateURL(const AutocompleteMatch& match);
// If instant is enabled for the specified profile the type of instant is set
// in |type| and true is returned. Otherwise returns false.
static bool GetType(Profile* profile, Type* type);
// Returns a string description for the currently enabled type. This is used
// for histograms.
static std::string GetTypeString(Profile* profile);
InstantDelegate* delegate_;
// The TabContents last passed to |Update|.
TabContentsWrapper* tab_contents_;
// Has notification been sent out that the preview TabContents is ready to be
// shown?
bool is_active_;
// See description above setter.
gfx::Rect omnibox_bounds_;
// See description above CommitOnMouseUp.
bool commit_on_mouse_up_;
// See description above getter.
PageTransition::Type last_transition_type_;
scoped_ptr<InstantLoaderManager> loader_manager_;
// The IDs of any search engines that don't support instant. We assume all
// search engines support instant, but if we determine an engine doesn't
// support instant it is added to this list. The list is cleared out on every
// reset/commit.
std::set<TemplateURLID> blacklisted_ids_;
base::OneShotTimer<InstantController> update_timer_;
// URL last pased to ScheduleUpdate.
GURL scheduled_url_;
Type type_;
DISALLOW_COPY_AND_ASSIGN(InstantController);
};
#endif // CHROME_BROWSER_INSTANT_INSTANT_CONTROLLER_H_
|