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/views/frame/browser_view.cc | |
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/views/frame/browser_view.cc')
-rw-r--r-- | chrome/browser/ui/views/frame/browser_view.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc index d77882c..83646e1 100644 --- a/chrome/browser/ui/views/frame/browser_view.cc +++ b/chrome/browser/ui/views/frame/browser_view.cc @@ -1142,8 +1142,8 @@ void BrowserView::ShowRepostFormWarningDialog(TabContents* tab_contents) { browser::ShowRepostFormWarningDialog(GetNativeHandle(), tab_contents); } -void BrowserView::ShowCollectedCookiesDialog(TabContents* tab_contents) { - browser::ShowCollectedCookiesDialog(GetNativeHandle(), tab_contents); +void BrowserView::ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) { + browser::ShowCollectedCookiesDialog(GetNativeHandle(), wrapper); } void BrowserView::ShowThemeInstallBubble() { |