[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / ui / omnibox / omnibox_current_page_delegate_impl.h
blob0094a2d2d38ea102766584e2403b73ca296f7fd5
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 OnInputStateChanged() OVERRIDE;
34 virtual void OnFocusChanged(OmniboxFocusState state,
35 OmniboxFocusChangeReason reason) OVERRIDE;
36 virtual void DoPrerender(const AutocompleteMatch& match) OVERRIDE;
37 virtual void SetSuggestionToPrefetch(
38 const InstantSuggestion& suggestion) OVERRIDE;
40 private:
41 OmniboxEditController* controller_;
42 Profile* profile_;
44 DISALLOW_COPY_AND_ASSIGN(OmniboxCurrentPageDelegateImpl);
47 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CURRENT_PAGE_DELEGATE_IMPL_H_