Chromium Code Reviews| Index: chrome/browser/ui/browser_dialogs.h |
| diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h |
| index cff9e769a9b4d6a6a4e477ff8f8f006ba3c975b0..0ccb21538fb98b4b4977a4e0428cbc3caf1abc96 100644 |
| --- a/chrome/browser/ui/browser_dialogs.h |
| +++ b/chrome/browser/ui/browser_dialogs.h |
| @@ -73,12 +73,6 @@ void HideHungRendererDialog(content::WebContents* contents); |
| // Shows the Task Manager. |browser| can be NULL when called from Ash. |
| void ShowTaskManager(Browser* browser); |
| -#if !defined(OS_MACOSX) |
| -// Shows the create web app shortcut dialog box. |
| -void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window, |
| - content::WebContents* web_contents); |
| -#endif |
| - |
| // Shows the create chrome app shortcut dialog box. |
| // On Mac, this creates a shortcut without prompting. |
| // |close_callback| may be null. |
| @@ -114,6 +108,17 @@ void ShowSignedCertificateTimestampsViewer( |
| content::WebContents* web_contents, |
| const content::SignedCertificateTimestampIDStatusList& sct_ids_list); |
| +#if !defined(OS_MACOSX) |
| +// Shows the create web app shortcut dialog box. |
| +void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window, |
| + content::WebContents* web_contents); |
|
Peter Kasting
2014/04/28 20:07:15
Nit: Don't move this block down here just to share
Mike West
2014/04/29 06:47:18
Done.
|
| + |
| +// Shows the ManagePasswords bubble for a particular |web_contents|. |
| +// |
| +// TODO(mkwst): Implement this feature on Mac: http://crbug.com/261628 |
| +void ShowManagePasswordsBubble(content::WebContents* web_contents); |
| +#endif |
| + |
| } // namespace chrome |
| #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |