| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/string16.h" | 11 #include "base/string16.h" |
| 12 #include "chrome/browser/extensions/extension_install_prompt.h" | 12 #include "chrome/browser/extensions/extension_install_prompt.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class DictionaryValue; | 15 class DictionaryValue; |
| 16 } | 16 } |
| 17 | 17 |
| 18 void ShowExtensionInstallDialog(gfx::NativeWindow parent, | 18 void ShowExtensionInstallDialog( |
| 19 content::PageNavigator* navigator, | 19 gfx::NativeWindow parent, |
| 20 ExtensionInstallPrompt::Delegate* delegate, | 20 content::PageNavigator* navigator, |
| 21 const ExtensionInstallPrompt::Prompt& prompt); | 21 ExtensionInstallPrompt::Delegate* delegate, |
| 22 const ExtensionInstallPrompt::Prompt& prompt, |
| 23 const ExtensionInstallPrompt::ShowDialogCallback& show_dialog_callback); |
| 22 | 24 |
| 23 // The implementations of this function are platform-specific. | 25 // The implementations of this function are platform-specific. |
| 24 void ShowExtensionInstallDialogImpl( | 26 void ShowExtensionInstallDialogImpl( |
| 25 gfx::NativeWindow parent, | 27 gfx::NativeWindow parent, |
| 26 content::PageNavigator* navigator, | 28 content::PageNavigator* navigator, |
| 27 ExtensionInstallPrompt::Delegate* delegate, | 29 ExtensionInstallPrompt::Delegate* delegate, |
| 28 const ExtensionInstallPrompt::Prompt& prompt); | 30 const ExtensionInstallPrompt::Prompt& prompt); |
| 29 | 31 |
| 30 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ | 32 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ |
| OLD | NEW |