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

Unified Diff: chrome/browser/ui/views/tab_contents/tab_contents_container.h

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 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/views/tab_contents/tab_contents_container.h
diff --git a/chrome/browser/ui/views/tab_contents/tab_contents_container.h b/chrome/browser/ui/views/tab_contents/tab_contents_container.h
index d88ec23c14172e6834043350aafae498887e535f..28729a3a397112607cd53e11a206bc673e5d06a3 100644
--- a/chrome/browser/ui/views/tab_contents/tab_contents_container.h
+++ b/chrome/browser/ui/views/tab_contents/tab_contents_container.h
@@ -12,9 +12,9 @@
#include "ui/views/view.h"
class NativeTabContentsContainer;
-class RenderViewHost;
namespace content {
+class RenderViewHost;
class WebContents;
}
@@ -63,8 +63,8 @@ class TabContentsContainer : public views::View,
// Called when the RenderViewHost of the hosted TabContents has changed, e.g.
// to show an interstitial page.
- void RenderViewHostChanged(RenderViewHost* old_host,
- RenderViewHost* new_host);
+ void RenderViewHostChanged(content::RenderViewHost* old_host,
+ content::RenderViewHost* new_host);
// Called when a WebContents is destroyed. This gives us a chance to clean
// up our internal state if the TabContents is somehow destroyed before we

Powered by Google App Engine
This is Rietveld 408576698