blob: 2f27ea1118f742b365b96fb0a92bdf3924aa4295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_OMNIBOX_SEARCH_HINT_H_
#define CHROME_BROWSER_OMNIBOX_SEARCH_HINT_H_
#pragma once
#include <map>
#include <string>
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
class Profile;
class TabContents;
// This class is responsible for showing an info-bar that tells the user she
// can type her search query directly in the omnibox.
// It is displayed when the user visits a known search engine URL and has not
// searched from the omnibox before, or has not previously dismissed a similar
// info-bar.
class OmniboxSearchHint : public NotificationObserver {
public:
explicit OmniboxSearchHint(TabContents* tab);
~OmniboxSearchHint();
// NotificationObserver method:
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
// Focus the location bar and displays a message instructing that search
// queries can be typed directly in there.
void ShowEnteringQuery();
TabContents* tab() { return tab_; }
// Disables the hint infobar permanently, so that it does not show ever again.
void DisableHint();
// Returns true if the profile and current environment make the showing of the
// hint infobar possible.
static bool IsEnabled(Profile* profile);
private:
void ShowInfoBar();
NotificationRegistrar notification_registrar_;
// The tab we are associated with.
TabContents* tab_;
// A map containing the URLs of the search engine for which we want to
// trigger the hint.
std::map<std::string, int> search_engine_urls_;
DISALLOW_COPY_AND_ASSIGN(OmniboxSearchHint);
};
#endif // CHROME_BROWSER_OMNIBOX_SEARCH_HINT_H_
|