Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7951)

Unified Diff: chrome/browser/ui/gtk/notifications/balloon_view_host_gtk.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for initial review. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/notifications/balloon_view_host_gtk.cc
diff --git a/chrome/browser/ui/gtk/notifications/balloon_view_host_gtk.cc b/chrome/browser/ui/gtk/notifications/balloon_view_host_gtk.cc
index 35a6befd74f2225a28ff8ca2783db937bca4cdca..c1709044c332e3fa301485fe9714900d2d109c6d 100644
--- a/chrome/browser/ui/gtk/notifications/balloon_view_host_gtk.cc
+++ b/chrome/browser/ui/gtk/notifications/balloon_view_host_gtk.cc
@@ -22,7 +22,7 @@ BalloonViewHost::~BalloonViewHost() {
void BalloonViewHost::UpdateActualSize(const gfx::Size& new_size) {
RenderViewHost* host = web_contents_->GetRenderViewHost();
if (host) {
- content::RenderWidgetHostView* view = host->view();
+ content::RenderWidgetHostView* view = host->GetView();
if (view)
view->SetSize(new_size);
}

Powered by Google App Engine
This is Rietveld 408576698