summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/thumbnail_generator.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/tab_contents/thumbnail_generator.h')
-rw-r--r--chrome/browser/tab_contents/thumbnail_generator.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/tab_contents/thumbnail_generator.h b/chrome/browser/tab_contents/thumbnail_generator.h
index 8329f29..c05f670 100644
--- a/chrome/browser/tab_contents/thumbnail_generator.h
+++ b/chrome/browser/tab_contents/thumbnail_generator.h
@@ -16,8 +16,8 @@
#include "base/timer.h"
#include "content/browser/renderer_host/backing_store.h"
#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 GURL;
class Profile;
@@ -29,7 +29,7 @@ namespace history {
class TopSites;
}
-class ThumbnailGenerator : public NotificationObserver,
+class ThumbnailGenerator : public content::NotificationObserver,
public TabContentsObserver {
public:
typedef base::Callback<void(const SkBitmap&)> ThumbnailReadyCallback;
@@ -133,10 +133,10 @@ class ThumbnailGenerator : public NotificationObserver,
int tag,
const gfx::Size& size);
- // NotificationObserver interface.
+ // content::NotificationObserver interface.
virtual void Observe(int type,
- const NotificationSource& source,
- const NotificationDetails& details);
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details);
// Indicates that the given widget has changed is visibility.
void WidgetHidden(RenderWidgetHost* widget);
@@ -145,7 +145,7 @@ class ThumbnailGenerator : public NotificationObserver,
// through being closed, or because the renderer is no longer there).
void TabContentsDisconnected(TabContents* contents);
- NotificationRegistrar registrar_;
+ content::NotificationRegistrar registrar_;
// Map of callback objects by sequence number.
struct AsyncRequestInfo;