| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_BROWSER_DIALOGS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BROWSER_DIALOGS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BROWSER_DIALOGS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BROWSER_DIALOGS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 const TemplateURL* template_url, | 76 const TemplateURL* template_url, |
| 77 EditSearchEngineControllerDelegate* delegate, | 77 EditSearchEngineControllerDelegate* delegate, |
| 78 Profile* profile); | 78 Profile* profile); |
| 79 | 79 |
| 80 // Shows the repost form confirmation dialog box. | 80 // Shows the repost form confirmation dialog box. |
| 81 void ShowRepostFormWarningDialog(gfx::NativeWindow parent_window, | 81 void ShowRepostFormWarningDialog(gfx::NativeWindow parent_window, |
| 82 TabContents* tab_contents); | 82 TabContents* tab_contents); |
| 83 | 83 |
| 84 // Shows the collected cookies dialog box. | 84 // Shows the collected cookies dialog box. |
| 85 void ShowCollectedCookiesDialog(gfx::NativeWindow parent_window, | 85 void ShowCollectedCookiesDialog(gfx::NativeWindow parent_window, |
| 86 TabContents* tab_contents); | 86 TabContentsWrapper* tab_contents); |
| 87 | 87 |
| 88 | 88 |
| 89 // Shows the create web app shortcut dialog box. | 89 // Shows the create web app shortcut dialog box. |
| 90 void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window, | 90 void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window, |
| 91 TabContentsWrapper* tab_contents); | 91 TabContentsWrapper* tab_contents); |
| 92 | 92 |
| 93 // Shows the create chrome app shortcut dialog box. | 93 // Shows the create chrome app shortcut dialog box. |
| 94 void ShowCreateChromeAppShortcutsDialog(gfx::NativeWindow parent_window, | 94 void ShowCreateChromeAppShortcutsDialog(gfx::NativeWindow parent_window, |
| 95 Profile* profile, | 95 Profile* profile, |
| 96 const Extension* app); | 96 const Extension* app); |
| 97 | 97 |
| 98 } // namespace browser | 98 } // namespace browser |
| 99 | 99 |
| 100 #endif // CHROME_BROWSER_UI_VIEWS_BROWSER_DIALOGS_H_ | 100 #endif // CHROME_BROWSER_UI_VIEWS_BROWSER_DIALOGS_H_ |
| OLD | NEW |