| 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 #ifndef CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ |
| 6 #define CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ | 6 #define CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 // Tells the page that the user pressed Enter in the omnibox. | 83 // Tells the page that the user pressed Enter in the omnibox. |
| 84 void Submit(const base::string16& text, | 84 void Submit(const base::string16& text, |
| 85 const EmbeddedSearchRequestParams& params); | 85 const EmbeddedSearchRequestParams& params); |
| 86 | 86 |
| 87 // Called when the tab corresponding to |this| instance is activated. | 87 // Called when the tab corresponding to |this| instance is activated. |
| 88 void OnTabActivated(); | 88 void OnTabActivated(); |
| 89 | 89 |
| 90 // Called when the tab corresponding to |this| instance is deactivated. | 90 // Called when the tab corresponding to |this| instance is deactivated. |
| 91 void OnTabDeactivated(); | 91 void OnTabDeactivated(); |
| 92 | 92 |
| 93 // Tells the page to toggle voice search. | |
| 94 void ToggleVoiceSearch(); | |
| 95 | |
| 96 // Returns true if the underlying page is a search results page. | 93 // Returns true if the underlying page is a search results page. |
| 97 bool IsSearchResultsPage(); | 94 bool IsSearchResultsPage(); |
| 98 | 95 |
| 99 void set_delegate(SearchTabHelperDelegate* delegate) { delegate_ = delegate; } | 96 void set_delegate(SearchTabHelperDelegate* delegate) { delegate_ = delegate; } |
| 100 | 97 |
| 101 private: | 98 private: |
| 102 friend class content::WebContentsUserData<SearchTabHelper>; | 99 friend class content::WebContentsUserData<SearchTabHelper>; |
| 103 friend class InstantPageTest; | 100 friend class InstantPageTest; |
| 104 friend class SearchIPCRouterPolicyTest; | 101 friend class SearchIPCRouterPolicyTest; |
| 105 friend class SearchIPCRouterTest; | 102 friend class SearchIPCRouterTest; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 void DidNavigateMainFrame( | 148 void DidNavigateMainFrame( |
| 152 const content::LoadCommittedDetails& details, | 149 const content::LoadCommittedDetails& details, |
| 153 const content::FrameNavigateParams& params) override; | 150 const content::FrameNavigateParams& params) override; |
| 154 void DidFinishLoad(content::RenderFrameHost* render_frame_host, | 151 void DidFinishLoad(content::RenderFrameHost* render_frame_host, |
| 155 const GURL& validated_url) override; | 152 const GURL& validated_url) override; |
| 156 void NavigationEntryCommitted( | 153 void NavigationEntryCommitted( |
| 157 const content::LoadCommittedDetails& load_details) override; | 154 const content::LoadCommittedDetails& load_details) override; |
| 158 | 155 |
| 159 // Overridden from SearchIPCRouter::Delegate: | 156 // Overridden from SearchIPCRouter::Delegate: |
| 160 void OnInstantSupportDetermined(bool supports_instant) override; | 157 void OnInstantSupportDetermined(bool supports_instant) override; |
| 161 void OnSetVoiceSearchSupport(bool supports_voice_search) override; | |
| 162 void FocusOmnibox(OmniboxFocusState state) override; | 158 void FocusOmnibox(OmniboxFocusState state) override; |
| 163 void NavigateToURL(const GURL& url, | 159 void NavigateToURL(const GURL& url, |
| 164 WindowOpenDisposition disposition, | 160 WindowOpenDisposition disposition, |
| 165 bool is_most_visited_item_url) override; | 161 bool is_most_visited_item_url) override; |
| 166 void OnDeleteMostVisitedItem(const GURL& url) override; | 162 void OnDeleteMostVisitedItem(const GURL& url) override; |
| 167 void OnUndoMostVisitedDeletion(const GURL& url) override; | 163 void OnUndoMostVisitedDeletion(const GURL& url) override; |
| 168 void OnUndoAllMostVisitedDeletions() override; | 164 void OnUndoAllMostVisitedDeletions() override; |
| 169 void OnLogEvent(NTPLoggingEventType event, base::TimeDelta time) override; | 165 void OnLogEvent(NTPLoggingEventType event, base::TimeDelta time) override; |
| 170 void OnLogMostVisitedImpression(int position, | 166 void OnLogMostVisitedImpression(int position, |
| 171 const base::string16& provider) override; | 167 const base::string16& provider) override; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 SearchTabHelperDelegate* delegate_; | 224 SearchTabHelperDelegate* delegate_; |
| 229 | 225 |
| 230 // Function to check if the omnibox has focus. Tests use this to modify the | 226 // Function to check if the omnibox has focus. Tests use this to modify the |
| 231 // default behavior. | 227 // default behavior. |
| 232 OmniboxHasFocusFn omnibox_has_focus_fn_; | 228 OmniboxHasFocusFn omnibox_has_focus_fn_; |
| 233 | 229 |
| 234 DISALLOW_COPY_AND_ASSIGN(SearchTabHelper); | 230 DISALLOW_COPY_AND_ASSIGN(SearchTabHelper); |
| 235 }; | 231 }; |
| 236 | 232 |
| 237 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ | 233 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ |
| OLD | NEW |