// Copyright 2012 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_UI_SEARCH_INSTANT_CONTROLLER_H_ #define CHROME_BROWSER_UI_SEARCH_INSTANT_CONTROLLER_H_ #include #include #include #include #include "base/basictypes.h" #include "base/gtest_prod_util.h" #include "base/memory/scoped_ptr.h" #include "base/strings/string16.h" #include "chrome/browser/ui/search/instant_page.h" #include "chrome/common/search_types.h" #include "ui/gfx/native_widget_types.h" class BrowserInstantController; class GURL; class InstantService; class InstantTab; class Profile; namespace content { class WebContents; } // Macro used for logging debug events. |message| should be a std::string. #define LOG_INSTANT_DEBUG_EVENT(controller, message) \ controller->LogDebugEvent(message) // InstantController drives Chrome Instant, i.e., the browser implementation of // the Embedded Search API (see http://dev.chromium.org/embeddedsearch). // // In extended mode, InstantController maintains and coordinates an InstantTab // instance of InstantPage. An InstantTab instance points to the currently // active tab, if it supports the Embedded Search API. InstantTab is backed by a // WebContents and it does not own that WebContents. // // InstantController is owned by Browser via BrowserInstantController. class InstantController : public InstantPage::Delegate { public: explicit InstantController(BrowserInstantController* browser); virtual ~InstantController(); // Called if the browser is navigating to a search URL for |search_terms| with // search-term-replacement enabled. If |instant_tab_| can be used to process // the search, this does so and returns true. Else, returns false. bool SubmitQuery(const base::string16& search_terms); // The search mode in the active tab has changed. Bind |instant_tab_| if the // |new_mode| reflects an Instant search results page. void SearchModeChanged(const SearchMode& old_mode, const SearchMode& new_mode); // The user switched tabs. Bind |instant_tab_| if the newly active tab is an // Instant search results page. void ActiveTabChanged(); // The user is about to switch tabs. void TabDeactivated(content::WebContents* contents); // Adds a new event to |debug_events_| and also DVLOG's it. Ensures that // |debug_events_| doesn't get too large. void LogDebugEvent(const std::string& info) const; // Resets list of debug events. void ClearDebugEvents(); // See comments for |debug_events_| below. const std::list >& debug_events() { return debug_events_; } // Used by BrowserInstantController to notify InstantController about the // instant support change event for the active web contents. void InstantSupportChanged(InstantSupportState instant_support); protected: // Accessors are made protected for testing purposes. virtual InstantTab* instant_tab() const; virtual Profile* profile() const; private: friend class InstantExtendedManualTest; friend class InstantTestBase; FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, ExtendedModeIsOn); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, MostVisited); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, ProcessIsolation); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, UnrelatedSiteInstance); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, OnDefaultSearchProviderChanged); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, AcceptingURLSearchDoesNotNavigate); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, AcceptingJSSearchDoesNotRunJS); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, ReloadSearchAfterBackReloadsCorrectQuery); FRIEND_TEST_ALL_PREFIXES(InstantExtendedFirstTabTest, RedirectToLocalOnLoadFailure); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, KeyboardTogglesVoiceSearch); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, HomeButtonAffectsMargin); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, SearchReusesInstantTab); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, SearchDoesntReuseInstantTabWithoutSupport); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, TypedSearchURLDoesntReuseInstantTab); FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, DispatchMVChangeEventWhileNavigatingBackToNTP); // Overridden from InstantPage::Delegate: // TODO(shishir): We assume that the WebContent's current RenderViewHost is // the RenderViewHost being created which is not always true. Fix this. virtual void InstantSupportDetermined( const content::WebContents* contents, bool supports_instant) OVERRIDE; virtual void InstantPageAboutToNavigateMainFrame( const content::WebContents* contents, const GURL& url) OVERRIDE; // Helper function to navigate the given contents to the local fallback // Instant URL and trim the history correctly. void RedirectToLocalNTP(content::WebContents* contents); // Helper for OmniboxFocusChanged. Commit or discard the overlay. void OmniboxLostFocus(gfx::NativeView view_gaining_focus); // 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(); // Sends theme info, omnibox bounds, etc. down to the Instant tab. void UpdateInfoForInstantTab(); // Returns the InstantService for the browser profile. InstantService* GetInstantService() const; BrowserInstantController* const browser_; // The instance of InstantPage maintained by InstantController. scoped_ptr instant_tab_; // The search model mode for the active tab. SearchMode search_mode_; // List of events and their timestamps, useful in debugging Instant behaviour. mutable std::list > debug_events_; DISALLOW_COPY_AND_ASSIGN(InstantController); }; #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_CONTROLLER_H_