| Index: chrome/browser/ui/snapshot_tab_helper.cc
|
| diff --git a/chrome/browser/ui/snapshot_tab_helper.cc b/chrome/browser/ui/snapshot_tab_helper.cc
|
| index d9a49c186afaed888b8dc993b2e3094575d996f8..891c3d54d5c155bdd9c2fb0daf7f201df9d383bb 100644
|
| --- a/chrome/browser/ui/snapshot_tab_helper.cc
|
| +++ b/chrome/browser/ui/snapshot_tab_helper.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "chrome/browser/ui/snapshot_tab_helper.h"
|
|
|
| -#include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/render_messages.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -12,8 +11,10 @@
|
|
|
| using content::WebContents;
|
|
|
| -SnapshotTabHelper::SnapshotTabHelper(WebContents* tab)
|
| - : content::WebContentsObserver(tab) {
|
| +int SnapshotTabHelper::kUserDataKey;
|
| +
|
| +SnapshotTabHelper::SnapshotTabHelper(WebContents* web_contents)
|
| + : content::WebContentsObserver(web_contents) {
|
| }
|
|
|
| SnapshotTabHelper::~SnapshotTabHelper() {
|
|
|