Index: chrome/browser/extensions/extension_install_dialog.h |
diff --git a/chrome/browser/extensions/extension_install_dialog.h b/chrome/browser/extensions/extension_install_dialog.h |
index 8f0ada4b9b0563c78a2abf0166265a2ecb795975..4124635561b41dbb275e227113b2ae9899dcadb7 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_ |