| Index: chrome/browser/ui/webui/web_dialog_controller.h
|
| ===================================================================
|
| --- chrome/browser/ui/webui/web_dialog_controller.h (revision 135175)
|
| +++ chrome/browser/ui/webui/web_dialog_controller.h (working copy)
|
| @@ -6,7 +6,7 @@
|
| #define CHROME_BROWSER_UI_WEBUI_WEB_DIALOG_CONTROLLER_H_
|
| #pragma once
|
|
|
| -#include "chrome/browser/ui/webui/web_dialog_ui.h"
|
| +#include "ui/web_dialogs/web_dialog_ui.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
|
|
| @@ -18,9 +18,9 @@
|
| // avoid using an old Profile object.
|
| class WebDialogController : public content::NotificationObserver {
|
| public:
|
| - WebDialogController(WebDialogDelegate* delegate,
|
| - Profile* profile,
|
| - Browser* browser);
|
| + WebDialogController(web_dialogs::WebDialogDelegate* delegate,
|
| + Profile* profile,
|
| + Browser* browser);
|
|
|
| // content::NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| @@ -30,7 +30,7 @@
|
| private:
|
| // The delegate controlled by this instance. This class is owned by the
|
| // delegate.
|
| - WebDialogDelegate* dialog_delegate_;
|
| + web_dialogs::WebDialogDelegate* dialog_delegate_;
|
|
|
| // Used for notification of parent browser closing.
|
| content::NotificationRegistrar registrar_;
|
|
|