diff options
author | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 00:04:57 +0000 |
---|---|---|
committer | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 00:04:57 +0000 |
commit | a3627e688f2f9453719e5ac1ceb0f97b8850a5b2 (patch) | |
tree | 3129aa03244ddf479393c78c01c59b8bd515c45b /chrome/browser/ui/browser.h | |
parent | bd0f08969a6fe21366e7d1fc7ae962c282325ae8 (diff) | |
download | chromium_src-a3627e688f2f9453719e5ac1ceb0f97b8850a5b2.zip chromium_src-a3627e688f2f9453719e5ac1ceb0f97b8850a5b2.tar.gz chromium_src-a3627e688f2f9453719e5ac1ceb0f97b8850a5b2.tar.bz2 |
content: Move collected cookies constrained window to TabContentsWrapper.
To split the ConstrainedWindow feature off of TabContents entirely (moving it
to a helper object on TabContentsWrapper), I'll need to first make each
constrained window TabContentsWrapper aware first. I started just hacking
BUG=95257
TEST=compiles
Review URL: http://codereview.chromium.org/7831051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99872 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser.h')
-rw-r--r-- | chrome/browser/ui/browser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h index 616c5a5..fdd1083 100644 --- a/chrome/browser/ui/browser.h +++ b/chrome/browser/ui/browser.h @@ -740,8 +740,8 @@ class Browser : public TabHandlerDelegate, // specified. GURL GetHomePage() const; - // Shows the cookies collected in the tab contents. - void ShowCollectedCookiesDialog(TabContents* tab_contents); + // Shows the cookies collected in the tab contents wrapper. + void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper); // Interface implementations //////////////////////////////////////////////// |