| Index: chrome/browser/automation/automation_provider_observers.h
|
| diff --git a/chrome/browser/automation/automation_provider_observers.h b/chrome/browser/automation/automation_provider_observers.h
|
| index 80c7d19d5258b1edb8f970c2468a3331864efabf..879bfdbb6cf0ce51b2964b9ddbc34f7954b7db10 100644
|
| --- a/chrome/browser/automation/automation_provider_observers.h
|
| +++ b/chrome/browser/automation/automation_provider_observers.h
|
| @@ -63,7 +63,6 @@ class ExtensionService;
|
| class InfoBarTabHelper;
|
| class Notification;
|
| class Profile;
|
| -class RenderViewHost;
|
| class SavePackage;
|
| class TabContents;
|
| class TranslateInfoBarDelegate;
|
| @@ -80,6 +79,7 @@ class Message;
|
|
|
| namespace content {
|
| class NavigationController;
|
| +class RenderViewHost;
|
| class WebContents;
|
| }
|
|
|
| @@ -1432,7 +1432,7 @@ class AppLaunchObserver : public content::NotificationObserver {
|
| class AutofillDisplayedObserver : public content::NotificationObserver {
|
| public:
|
| AutofillDisplayedObserver(int notification,
|
| - RenderViewHost* render_view_host,
|
| + content::RenderViewHost* render_view_host,
|
| AutomationProvider* automation,
|
| IPC::Message* reply_message);
|
| virtual ~AutofillDisplayedObserver();
|
| @@ -1444,7 +1444,7 @@ class AutofillDisplayedObserver : public content::NotificationObserver {
|
|
|
| private:
|
| int notification_;
|
| - RenderViewHost* render_view_host_;
|
| + content::RenderViewHost* render_view_host_;
|
| base::WeakPtr<AutomationProvider> automation_;
|
| scoped_ptr<IPC::Message> reply_message_;
|
| content::NotificationRegistrar registrar_;
|
|
|