| Index: chrome/browser/ui/browser_dialogs.h
|
| diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h
|
| index 2c00c2b19c81d4bb56266d27467477a18bcfc0dd..e565227ef1c93fc084cd2b03786e8a8e2a57e450 100644
|
| --- a/chrome/browser/ui/browser_dialogs.h
|
| +++ b/chrome/browser/ui/browser_dialogs.h
|
| @@ -5,10 +5,12 @@
|
| #ifndef CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
|
| #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
|
|
|
| +#include "base/callback.h"
|
| #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED.
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| class Browser;
|
| +class Profile;
|
| class SkBitmap;
|
| class TabModalConfirmDialogDelegate;
|
|
|
| @@ -73,6 +75,15 @@ void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window,
|
| content::WebContents* web_contents);
|
| #endif
|
|
|
| +void ShowProfileSigninConfirmationDialog(
|
| + Browser* browser,
|
| + content::WebContents* web_contents,
|
| + Profile* profile,
|
| + const std::string& username,
|
| + const base::Closure& cancel_signin,
|
| + const base::Closure& signin_with_new_profile,
|
| + const base::Closure& continue_signin);
|
| +
|
| } // namespace chrome
|
|
|
| #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_
|
|
|