| Index: chrome/browser/safe_browsing/safe_browsing_tab_observer.h
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_tab_observer.h b/chrome/browser/safe_browsing/safe_browsing_tab_observer.h
|
| index 675a5d97a8702e04e554a0f206234d604a56019e..70089845021afe09584d69246360188e32a9b9bd 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_tab_observer.h
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_tab_observer.h
|
| @@ -11,7 +11,6 @@
|
| #include "content/public/browser/notification_observer.h"
|
|
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| namespace safe_browsing {
|
|
|
| @@ -20,7 +19,7 @@ class ClientSideDetectionHost;
|
| // Per-tab class to handle safe-browsing functionality.
|
| class SafeBrowsingTabObserver : public content::NotificationObserver {
|
| public:
|
| - explicit SafeBrowsingTabObserver(TabContentsWrapper* wrapper);
|
| + explicit SafeBrowsingTabObserver(TabContents* tab_contents);
|
| virtual ~SafeBrowsingTabObserver();
|
|
|
| private:
|
| @@ -38,8 +37,8 @@ class SafeBrowsingTabObserver : public content::NotificationObserver {
|
| // Handles IPCs.
|
| scoped_ptr<ClientSideDetectionHost> safebrowsing_detection_host_;
|
|
|
| - // Our owning TabContentsWrapper.
|
| - TabContentsWrapper* wrapper_;
|
| + // Our owning TabContents.
|
| + TabContents* tab_contents_;
|
|
|
| PrefChangeRegistrar pref_change_registrar_;
|
|
|
|
|