diff options
Diffstat (limited to 'chrome/browser/omnibox_search_hint.h')
-rw-r--r-- | chrome/browser/omnibox_search_hint.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/omnibox_search_hint.h b/chrome/browser/omnibox_search_hint.h index 1a43436..5753736 100644 --- a/chrome/browser/omnibox_search_hint.h +++ b/chrome/browser/omnibox_search_hint.h @@ -9,8 +9,8 @@ #include <map> #include <string> -#include "content/common/notification_observer.h" -#include "content/common/notification_registrar.h" +#include "content/public/browser/notification_observer.h" +#include "content/public/browser/notification_registrar.h" class Profile; class TabContentsWrapper; @@ -20,15 +20,15 @@ class TabContentsWrapper; // 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 { +class OmniboxSearchHint : public content::NotificationObserver { public: explicit OmniboxSearchHint(TabContentsWrapper* tab); virtual ~OmniboxSearchHint(); - // NotificationObserver method: + // content::NotificationObserver method: virtual void Observe(int type, - const NotificationSource& source, - const NotificationDetails& details); + const content::NotificationSource& source, + const content::NotificationDetails& details); // Focus the location bar and displays a message instructing that search // queries can be typed directly in there. @@ -46,7 +46,7 @@ class OmniboxSearchHint : public NotificationObserver { private: void ShowInfoBar(); - NotificationRegistrar notification_registrar_; + content::NotificationRegistrar notification_registrar_; // The tab we are associated with. TabContentsWrapper* tab_; |