1 // Copyright 2013 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_ 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_ 7 8 #include "base/compiler_specific.h" 9 #include "chrome/browser/ui/omnibox/omnibox_current_page_delegate.h" 10 11 class OmniboxEditController; 12 class Profile; 13 14 class OmniboxCurrentPageDelegateImpl : public OmniboxCurrentPageDelegate { 15 public: 16 explicit OmniboxCurrentPageDelegateImpl(OmniboxEditController* controller, 17 Profile* profile); 18 virtual ~OmniboxCurrentPageDelegateImpl(); 19 20 // OmniboxCurrentPageDelegate. 21 virtual bool CurrentPageExists() const OVERRIDE; 22 virtual const GURL& GetURL() const OVERRIDE; 23 virtual bool IsInstantNTP() const OVERRIDE; 24 virtual bool IsSearchResultsPage() const OVERRIDE; 25 virtual bool IsLoading() const OVERRIDE; 26 virtual content::NavigationController& 27 GetNavigationController() const OVERRIDE; 28 virtual const SessionID& GetSessionID() const OVERRIDE; 29 virtual bool ProcessExtensionKeyword( 30 TemplateURL* template_url, 31 const AutocompleteMatch& match, 32 WindowOpenDisposition disposition) OVERRIDE; 33 virtual void NotifySearchTabHelper(bool user_input_in_progress, 34 bool cancelling) OVERRIDE; 35 virtual void DoPrerender(const AutocompleteMatch& match) OVERRIDE; 36 37 private: 38 OmniboxEditController* controller_; 39 Profile* profile_; 40 41 DISALLOW_COPY_AND_ASSIGN(OmniboxCurrentPageDelegateImpl); 42 }; 43 44 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_ 45