Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3146)

Unified Diff: chrome/browser/safe_browsing/safe_browsing_tab_observer.h

Issue 10539066: TabContentsWrapper -> TabContents, part 25. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698