Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / omnibox / omnibox_current_page_delegate_impl.h
blob9f5b024bdba082bb189a9025d4c83c2bf7c7908d
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.
5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_
6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_
8 #include "base/compiler_specific.h"
9 #include "chrome/browser/ui/omnibox/omnibox_current_page_delegate.h"
11 class OmniboxEditController;
12 class Profile;
14 class OmniboxCurrentPageDelegateImpl : public OmniboxCurrentPageDelegate {
15 public:
16 explicit OmniboxCurrentPageDelegateImpl(OmniboxEditController* controller,
17 Profile* profile);
18 virtual ~OmniboxCurrentPageDelegateImpl();
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;
37 private:
38 OmniboxEditController* controller_;
39 Profile* profile_;
41 DISALLOW_COPY_AND_ASSIGN(OmniboxCurrentPageDelegateImpl);
44 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_