Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4278)

Unified Diff: chrome/browser/instant/instant_controller.h

Issue 11833043: Instant Extended: Fallback to local preview if the remote instant page is not ready on user input. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor
Patch Set: Fixing tests. Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/instant/instant_controller.h
diff --git a/chrome/browser/instant/instant_controller.h b/chrome/browser/instant/instant_controller.h
index 5c4d01c09014faab7f61288380bbc2758e2b0388..d9039e3c41396a2cb9066d8754479c2bdab6bb15 100644
--- a/chrome/browser/instant/instant_controller.h
+++ b/chrome/browser/instant/instant_controller.h
@@ -187,6 +187,14 @@ class InstantController {
return debug_events_;
}
+ // Variable accessors required by the InstantLoader.
+ bool extended_enabled() const { return extended_enabled_; }
+ bool instant_enabled() const { return instant_enabled_; }
+ chrome::search::Mode search_mode() const { return search_mode_; }
+ OmniboxFocusState omnibox_focus_state() const { return omnibox_focus_state_; }
+ int start_margin() const { return start_margin_; }
+ int end_margin() const { return end_margin_; }
sreeram 2013/01/30 19:28:08 Won't it be simpler to just have the InstantLoader
Shishir 2013/01/31 23:46:47 Done.
+
private:
FRIEND_TEST_ALL_PREFIXES(InstantTest, OmniboxFocusLoadsInstant);
FRIEND_TEST_ALL_PREFIXES(InstantTest, SetWithTemplateURL);
@@ -215,6 +223,11 @@ class InstantController {
// deleted and recreated. Else the refresh is skipped.
void OnStaleLoader();
+ // If the |loader_| being used is in fallback mode, it will be switched back
+ // to the remote loader if the loader is not showing and the omnibox does not
+ // have focus.
+ void MaybeSwitchToRemoteLoader();
+
// If the active tab is an Instant search results page, sets |instant_tab_| to
// point to it. Else, deletes any existing |instant_tab_|.
void ResetInstantTab();

Powered by Google App Engine
This is Rietveld 408576698