summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/bookmarks/bookmark_tab_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/bookmarks/bookmark_tab_helper.h')
-rw-r--r--chrome/browser/ui/bookmarks/bookmark_tab_helper.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/ui/bookmarks/bookmark_tab_helper.h b/chrome/browser/ui/bookmarks/bookmark_tab_helper.h
index 53d45d8..20a521a 100644
--- a/chrome/browser/ui/bookmarks/bookmark_tab_helper.h
+++ b/chrome/browser/ui/bookmarks/bookmark_tab_helper.h
@@ -7,15 +7,15 @@
#pragma once
#include "content/browser/tab_contents/tab_contents_observer.h"
-#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 BookmarkTabHelperDelegate;
class TabContentsWrapper;
struct BookmarkNodeData;
// Per-tab class to manage bookmarks.
-class BookmarkTabHelper : public NotificationObserver,
+class BookmarkTabHelper : public content::NotificationObserver,
public TabContentsObserver {
public:
// BookmarkDrag --------------------------------------------------------------
@@ -47,10 +47,10 @@ class BookmarkTabHelper : public NotificationObserver,
const content::LoadCommittedDetails& details,
const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE;
- // NotificationObserver overrides:
+ // content::NotificationObserver overrides:
virtual void Observe(int type,
- const NotificationSource& source,
- const NotificationDetails& details) OVERRIDE;
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) OVERRIDE;
// It is up to callers to call SetBookmarkDragDelegate(NULL) when
// |bookmark_drag| is deleted since this class does not take ownership of
@@ -70,7 +70,7 @@ class BookmarkTabHelper : public NotificationObserver,
bool is_starred_;
// Registers and unregisters us for notifications.
- NotificationRegistrar registrar_;
+ content::NotificationRegistrar registrar_;
// Owning TabContentsWrapper.
TabContentsWrapper* tab_contents_wrapper_;