diff options
Diffstat (limited to 'chrome/browser/extensions/extension_install_dialog.h')
-rw-r--r-- | chrome/browser/extensions/extension_install_dialog.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_install_dialog.h b/chrome/browser/extensions/extension_install_dialog.h index 8f0ada4..4124635 100644 --- a/chrome/browser/extensions/extension_install_dialog.h +++ b/chrome/browser/extensions/extension_install_dialog.h @@ -20,13 +20,19 @@ namespace base { class DictionaryValue; } -// The implementations of this function are platform-specific. void ShowExtensionInstallDialog(Profile* profile, ExtensionInstallUI::Delegate* delegate, const Extension* extension, SkBitmap* icon, const ExtensionInstallUI::Prompt& prompt); +// The implementations of this function are platform-specific. +void ShowExtensionInstallDialogImpl(Profile* profile, + ExtensionInstallUI::Delegate* delegate, + const Extension* extension, + SkBitmap* icon, + const ExtensionInstallUI::Prompt& prompt); + // Wrapper around ShowExtensionInstallDialog that shows the install dialog for // a given manifest (that corresponds to an extension about to be installed with // ID |id|). If the name or description in the manifest is a localized @@ -49,9 +55,9 @@ bool ShowExtensionInstallDialogForManifest( scoped_refptr<Extension>* dummy_extension); // For use only in tests - sets a flag that makes invocations of -// ShowExtensionInstallDialogForManifest skip putting up a real dialog, and +// ShowExtensionInstallDialog* skip putting up a real dialog, and // instead act as if the dialog choice was to proceed or abort. -void SetExtensionInstallDialogForManifestAutoConfirmForTests( +void SetExtensionInstallDialogAutoConfirmForTests( bool should_proceed); #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_DIALOG_H_ |