diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-21 00:34:36 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-21 00:34:36 +0000 |
commit | 14cb4c944051458397099ecb7325c414d5d707c9 (patch) | |
tree | 5e5739fdb354a974c4afb37e94bccfb5939690e2 /chrome | |
parent | 64f1f2b30cbcafca46e332653370d8f4e4f14569 (diff) | |
download | chromium_src-14cb4c944051458397099ecb7325c414d5d707c9.zip chromium_src-14cb4c944051458397099ecb7325c414d5d707c9.tar.gz chromium_src-14cb4c944051458397099ecb7325c414d5d707c9.tar.bz2 |
Fix GTK/Mac builds.
Review URL: http://codereview.chromium.org/155826
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21136 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/cocoa/browser_window_cocoa.h | 3 | ||||
-rw-r--r-- | chrome/browser/cocoa/browser_window_cocoa.mm | 5 | ||||
-rw-r--r-- | chrome/browser/cocoa/page_info_window_mac.h | 3 | ||||
-rw-r--r-- | chrome/browser/cocoa/page_info_window_mac.mm | 3 | ||||
-rw-r--r-- | chrome/browser/gtk/browser_window_gtk.cc | 3 | ||||
-rw-r--r-- | chrome/browser/gtk/browser_window_gtk.h | 3 |
6 files changed, 7 insertions, 13 deletions
diff --git a/chrome/browser/cocoa/browser_window_cocoa.h b/chrome/browser/cocoa/browser_window_cocoa.h index 74eab33..7891575 100644 --- a/chrome/browser/cocoa/browser_window_cocoa.h +++ b/chrome/browser/cocoa/browser_window_cocoa.h @@ -77,8 +77,7 @@ class BrowserWindowCocoa : public BrowserWindow, virtual void UserChangedTheme(); virtual int GetExtraRenderViewHeight() const; virtual void TabContentsFocused(TabContents* tab_contents); - virtual void ShowPageInfo(gfx::NativeView parent, - Profile* profile, + virtual void ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history); diff --git a/chrome/browser/cocoa/browser_window_cocoa.mm b/chrome/browser/cocoa/browser_window_cocoa.mm index d9846253..61a616b 100644 --- a/chrome/browser/cocoa/browser_window_cocoa.mm +++ b/chrome/browser/cocoa/browser_window_cocoa.mm @@ -269,12 +269,11 @@ void BrowserWindowCocoa::TabContentsFocused(TabContents* tab_contents) { NOTIMPLEMENTED(); } -void BrowserWindowCocoa::ShowPageInfo(gfx::NativeView parent, - Profile* profile, +void BrowserWindowCocoa::ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history) { - PageInfoWindowMac::ShowPageInfo(parent, profile, url, ssl, show_history); + PageInfoWindowMac::ShowPageInfo(profile, url, ssl, show_history); } void BrowserWindowCocoa::Observe(NotificationType type, diff --git a/chrome/browser/cocoa/page_info_window_mac.h b/chrome/browser/cocoa/page_info_window_mac.h index 0d1d660..da7b2b6 100644 --- a/chrome/browser/cocoa/page_info_window_mac.h +++ b/chrome/browser/cocoa/page_info_window_mac.h @@ -16,8 +16,7 @@ class PageInfoWindowMac : public PageInfoModel::PageInfoModelObserver { virtual ~PageInfoWindowMac(); // Creates and shows the page info. - static void ShowPageInfo(gfx::NativeView parent, - Profile* profile, + static void ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history); diff --git a/chrome/browser/cocoa/page_info_window_mac.mm b/chrome/browser/cocoa/page_info_window_mac.mm index f7dfaca..2112059 100644 --- a/chrome/browser/cocoa/page_info_window_mac.mm +++ b/chrome/browser/cocoa/page_info_window_mac.mm @@ -18,8 +18,7 @@ #include "net/base/cert_status_flags.h" #include "net/base/x509_certificate.h" -void PageInfoWindowMac::ShowPageInfo(gfx::NativeView parent, - Profile* profile, +void PageInfoWindowMac::ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history) { diff --git a/chrome/browser/gtk/browser_window_gtk.cc b/chrome/browser/gtk/browser_window_gtk.cc index 913b4ec..d3545c2 100644 --- a/chrome/browser/gtk/browser_window_gtk.cc +++ b/chrome/browser/gtk/browser_window_gtk.cc @@ -780,8 +780,7 @@ void BrowserWindowGtk::TabContentsFocused(TabContents* tab_contents) { NOTIMPLEMENTED(); } -void BrowserWindowGtk::ShowPageInfo(gfx::NativeView parent, - Profile* profile, +void BrowserWindowGtk::ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history) { diff --git a/chrome/browser/gtk/browser_window_gtk.h b/chrome/browser/gtk/browser_window_gtk.h index 8aff3ae..280d7b9 100644 --- a/chrome/browser/gtk/browser_window_gtk.h +++ b/chrome/browser/gtk/browser_window_gtk.h @@ -103,8 +103,7 @@ class BrowserWindowGtk : public BrowserWindow, virtual void UserChangedTheme(); virtual int GetExtraRenderViewHeight() const; virtual void TabContentsFocused(TabContents* tab_contents); - virtual void ShowPageInfo(gfx::NativeView parent, - Profile* profile, + virtual void ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history); |