summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/frame
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-21 00:15:50 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-21 00:15:50 +0000
commitbb678330f8aeb30f169129dc32ff8fecef60d58e (patch)
tree59784e193346bcf883c664ca0497f3909575e46f /chrome/browser/views/frame
parent54dbf3b1b77a3d33f16cc4bf6efc9eec4404d4ef (diff)
downloadchromium_src-bb678330f8aeb30f169129dc32ff8fecef60d58e.zip
chromium_src-bb678330f8aeb30f169129dc32ff8fecef60d58e.tar.gz
chromium_src-bb678330f8aeb30f169129dc32ff8fecef60d58e.tar.bz2
Resurrect toolkit_views build.
Review URL: http://codereview.chromium.org/155797 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21132 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/frame')
-rw-r--r--chrome/browser/views/frame/browser_view.cc6
-rw-r--r--chrome/browser/views/frame/browser_view.h3
2 files changed, 4 insertions, 5 deletions
diff --git a/chrome/browser/views/frame/browser_view.cc b/chrome/browser/views/frame/browser_view.cc
index 15f2795..d8803d4 100644
--- a/chrome/browser/views/frame/browser_view.cc
+++ b/chrome/browser/views/frame/browser_view.cc
@@ -966,12 +966,12 @@ void BrowserView::TabContentsFocused(TabContents* tab_contents) {
contents_container_->TabContentsFocused(tab_contents);
}
-void BrowserView::ShowPageInfo(gfx::NativeView parent,
- Profile* profile,
+void BrowserView::ShowPageInfo(Profile* profile,
const GURL& url,
const NavigationEntry::SSLStatus& ssl,
bool show_history) {
- browser::ShowPageInfo(parent, profile, url, ssl, show_history);
+ browser::ShowPageInfo(GetWindow()->GetNativeWindow(), profile, url, ssl,
+ show_history);
}
///////////////////////////////////////////////////////////////////////////////
diff --git a/chrome/browser/views/frame/browser_view.h b/chrome/browser/views/frame/browser_view.h
index 1f64249..859beba 100644
--- a/chrome/browser/views/frame/browser_view.h
+++ b/chrome/browser/views/frame/browser_view.h
@@ -244,8 +244,7 @@ class BrowserView : public BrowserWindow,
virtual void UserChangedTheme();
virtual int GetExtraRenderViewHeight() const;
virtual void TabContentsFocused(TabContents* source);
- virtual void ShowPageInfo(gfx::NativeView parent,
- Profile* profile,
+ virtual void ShowPageInfo(Profile* profile,
const GURL& url,
const NavigationEntry::SSLStatus& ssl,
bool show_history);