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

Unified Diff: chrome/browser/ui/views/collected_cookies_views.h

Issue 10540100: TabContentsWrapper -> TabContents, part 48. (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
« no previous file with comments | « chrome/browser/ui/views/browser_dialogs.h ('k') | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/collected_cookies_views.h
diff --git a/chrome/browser/ui/views/collected_cookies_views.h b/chrome/browser/ui/views/collected_cookies_views.h
index 6b7ec21d22c466d0029dbf67cb981b38be3ec974..49b1c4e05fede550a3b61b5b34195acba6087973 100644
--- a/chrome/browser/ui/views/collected_cookies_views.h
+++ b/chrome/browser/ui/views/collected_cookies_views.h
@@ -19,7 +19,6 @@ class CookieInfoView;
class CookiesTreeModel;
class InfobarView;
class TabContents;
-typedef TabContents TabContentsWrapper;
namespace views {
class Label;
@@ -31,7 +30,7 @@ class TreeView;
//
// CollectedCookiesViews is a dialog that displays the allowed and blocked
// cookies of the current tab contents. To display the dialog, invoke
-// ShowCollectedCookiesDialog() on the delegate of the tab contents wrapper's
+// ShowCollectedCookiesDialog() on the delegate of the TabContents's
// content settings tab helper.
class CollectedCookiesViews : public views::DialogDelegateView,
public content::NotificationObserver,
@@ -40,7 +39,7 @@ class CollectedCookiesViews : public views::DialogDelegateView,
public views::TreeViewController {
public:
// Use BrowserWindow::ShowCollectedCookiesDialog to show.
- explicit CollectedCookiesViews(TabContentsWrapper* wrapper);
+ explicit CollectedCookiesViews(TabContents* tab_contents);
// views::DialogDelegate:
virtual string16 GetWindowTitle() const OVERRIDE;
@@ -90,7 +89,7 @@ class CollectedCookiesViews : public views::DialogDelegateView,
ConstrainedWindow* window_;
// The tab contents.
- TabContentsWrapper* wrapper_;
+ TabContents* tab_contents_;
// Assorted views.
views::Label* allowed_label_;
« no previous file with comments | « chrome/browser/ui/views/browser_dialogs.h ('k') | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698