| 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;
|
|
|