| Index: chrome/browser/chromeos/login/ui/login_web_dialog.h
|
| diff --git a/chrome/browser/chromeos/login/ui/login_web_dialog.h b/chrome/browser/chromeos/login/ui/login_web_dialog.h
|
| index 3014869c4609bc7d25717225c29c5269e38ce6fa..070e5d6b096c692ac76d19bcbbc17bdfed3275bb 100644
|
| --- a/chrome/browser/chromeos/login/ui/login_web_dialog.h
|
| +++ b/chrome/browser/chromeos/login/ui/login_web_dialog.h
|
| @@ -15,7 +15,9 @@
|
| #include "ui/web_dialogs/web_dialog_delegate.h"
|
| #include "url/gurl.h"
|
|
|
| -class Profile;
|
| +namespace content {
|
| +class BrowserContext;
|
| +}
|
|
|
| namespace chromeos {
|
|
|
| @@ -40,7 +42,7 @@ class LoginWebDialog : public ui::WebDialogDelegate,
|
| STYLE_BUBBLE // Use chromeos::BubbleWindow as a host.
|
| };
|
|
|
| - LoginWebDialog(Profile* profile,
|
| + LoginWebDialog(content::BrowserContext* browser_context,
|
| Delegate* delegate,
|
| gfx::NativeWindow parent_window,
|
| const base::string16& title,
|
| @@ -89,7 +91,7 @@ class LoginWebDialog : public ui::WebDialogDelegate,
|
| const content::NotificationDetails& details) OVERRIDE;
|
|
|
| private:
|
| - Profile* profile_;
|
| + content::BrowserContext* browser_context_;
|
| gfx::NativeWindow parent_window_;
|
| // Notifications receiver.
|
| Delegate* delegate_;
|
|
|