| 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/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 const content::LoadCommittedDetails& details, | 153 const content::LoadCommittedDetails& details, |
| 154 const content::FrameNavigateParams& params) override; | 154 const content::FrameNavigateParams& params) override; |
| 155 void DidFinishLoad(content::RenderFrameHost* render_frame_host, | 155 void DidFinishLoad(content::RenderFrameHost* render_frame_host, |
| 156 const GURL& validated_url) override; | 156 const GURL& validated_url) override; |
| 157 void NavigationEntryCommitted( | 157 void NavigationEntryCommitted( |
| 158 const content::LoadCommittedDetails& load_details) override; | 158 const content::LoadCommittedDetails& load_details) override; |
| 159 | 159 |
| 160 // Overridden from SearchIPCRouter::Delegate: | 160 // Overridden from SearchIPCRouter::Delegate: |
| 161 void OnInstantSupportDetermined(bool supports_instant) override; | 161 void OnInstantSupportDetermined(bool supports_instant) override; |
| 162 void FocusOmnibox(OmniboxFocusState state) override; | 162 void FocusOmnibox(OmniboxFocusState state) override; |
| 163 void NavigateToURL(const GURL& url, | |
| 164 WindowOpenDisposition disposition) override; | |
| 165 void OnDeleteMostVisitedItem(const GURL& url) override; | 163 void OnDeleteMostVisitedItem(const GURL& url) override; |
| 166 void OnUndoMostVisitedDeletion(const GURL& url) override; | 164 void OnUndoMostVisitedDeletion(const GURL& url) override; |
| 167 void OnUndoAllMostVisitedDeletions() override; | 165 void OnUndoAllMostVisitedDeletions() override; |
| 168 void OnLogEvent(NTPLoggingEventType event, base::TimeDelta time) override; | 166 void OnLogEvent(NTPLoggingEventType event, base::TimeDelta time) override; |
| 169 void OnLogMostVisitedImpression(int position, | 167 void OnLogMostVisitedImpression(int position, |
| 170 const base::string16& provider) override; | 168 const base::string16& provider) override; |
| 171 void OnLogMostVisitedNavigation(int position, | 169 void OnLogMostVisitedNavigation(int position, |
| 172 const base::string16& provider) override; | 170 const base::string16& provider) override; |
| 173 void PasteIntoOmnibox(const base::string16& text) override; | 171 void PasteIntoOmnibox(const base::string16& text) override; |
| 174 void OnChromeIdentityCheck(const base::string16& identity) override; | 172 void OnChromeIdentityCheck(const base::string16& identity) override; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 SearchTabHelperDelegate* delegate_; | 228 SearchTabHelperDelegate* delegate_; |
| 231 | 229 |
| 232 // Function to check if the omnibox has focus. Tests use this to modify the | 230 // Function to check if the omnibox has focus. Tests use this to modify the |
| 233 // default behavior. | 231 // default behavior. |
| 234 OmniboxHasFocusFn omnibox_has_focus_fn_; | 232 OmniboxHasFocusFn omnibox_has_focus_fn_; |
| 235 | 233 |
| 236 DISALLOW_COPY_AND_ASSIGN(SearchTabHelper); | 234 DISALLOW_COPY_AND_ASSIGN(SearchTabHelper); |
| 237 }; | 235 }; |
| 238 | 236 |
| 239 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ | 237 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_TAB_HELPER_H_ |
| OLD | NEW |