summaryrefslogtreecommitdiffstats
path: root/chrome/browser/notifications
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-08 19:17:15 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-08 19:17:15 +0000
commit8683ad2ddd007ff7861dc8b99a53e309a4890d43 (patch)
treec529bf784d255101c2e3f4df24bb068f1cddda5e /chrome/browser/notifications
parent7f2b242b3599563f6cd6cf7aaddd5c993e92187a (diff)
downloadchromium_src-8683ad2ddd007ff7861dc8b99a53e309a4890d43.zip
chromium_src-8683ad2ddd007ff7861dc8b99a53e309a4890d43.tar.gz
chromium_src-8683ad2ddd007ff7861dc8b99a53e309a4890d43.tar.bz2
Removes RenderViewHostDelegate::GetBrowserWindowID. Instead the places
that care send the correct message. This change is motivated by wanting to remove SessionID from content. At later cl will remove TabContentsDelegate::RenderViewCreated. BUG=none TEST=none R=jam@chromium.org,mpcomplete@chromium.org Review URL: http://codereview.chromium.org/7046041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88376 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r--chrome/browser/notifications/balloon_host.cc4
-rw-r--r--chrome/browser/notifications/balloon_host.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc
index 19d871f..ead868a 100644
--- a/chrome/browser/notifications/balloon_host.cc
+++ b/chrome/browser/notifications/balloon_host.cc
@@ -110,10 +110,6 @@ void BalloonHost::RenderViewGone(RenderViewHost* render_view_host,
Close(render_view_host);
}
-int BalloonHost::GetBrowserWindowID() const {
- return extension_misc::kUnknownWindowId;
-}
-
ViewType::Type BalloonHost::GetRenderViewType() const {
return ViewType::NOTIFICATION;
}
diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h
index a732065..a711260 100644
--- a/chrome/browser/notifications/balloon_host.h
+++ b/chrome/browser/notifications/balloon_host.h
@@ -62,7 +62,6 @@ class BalloonHost : public RenderViewHostDelegate,
int error_code);
virtual void UpdateTitle(RenderViewHost* render_view_host,
int32 page_id, const std::wstring& title) {}
- virtual int GetBrowserWindowID() const;
virtual ViewType::Type GetRenderViewType() const;
virtual RenderViewHostDelegate::View* GetViewDelegate();