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

Unified Diff: chrome/browser/ui/views/tab_contents/native_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/native_tab_contents_container.h
diff --git a/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h b/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h
index 6879bd97428e4c656e0e3d046cd123cb4d73db89..9dc9713232df51c9248b1c2b26f04929624d3566 100644
--- a/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h
+++ b/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h
@@ -6,10 +6,10 @@
#define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_NATIVE_TAB_CONTENTS_CONTAINER_H_
#pragma once
-class RenderViewHost;
class TabContentsContainer;
namespace content {
+class RenderViewHost;
class WebContents;
}
@@ -41,8 +41,8 @@ class NativeTabContentsContainer {
// Tells the container that the RenderViewHost for the attached WebContents
// has changed and it should update focus.
- virtual void RenderViewHostChanged(RenderViewHost* old_host,
- RenderViewHost* new_host) = 0;
+ virtual void RenderViewHostChanged(content::RenderViewHost* old_host,
+ content::RenderViewHost* new_host) = 0;
// Tells the container that |contents| got the focus.
virtual void WebContentsFocused(content::WebContents* contents) = 0;

Powered by Google App Engine
This is Rietveld 408576698