| 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..60d9fa2c0650396de1ea6b15dbc9bcf03b72cbbb 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,13 @@ void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window,
|
| content::WebContents* web_contents);
|
| #endif
|
|
|
| +void ShowProfileSigninConfirmationDialog(
|
| + 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_
|
|
|