summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_install_ui.h
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 17:50:59 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 17:50:59 +0000
commitaada7d5c6559f1b84b2a327f8a11a09651f3a69d (patch)
tree5783752212d0a8119d3a5a06cf7a9c81c2beaf6d /chrome/browser/extensions/extension_install_ui.h
parentfcc3b54139d81559d596916df1df0da52a9a36d7 (diff)
downloadchromium_src-aada7d5c6559f1b84b2a327f8a11a09651f3a69d.zip
chromium_src-aada7d5c6559f1b84b2a327f8a11a09651f3a69d.tar.gz
chromium_src-aada7d5c6559f1b84b2a327f8a11a09651f3a69d.tar.bz2
First part of new install dialog on Windows. Later changes will
add tooltips and implementations on other platforms. BUG=29633 Review URL: http://codereview.chromium.org/1299002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42639 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_install_ui.h')
-rwxr-xr-x[-rw-r--r--]chrome/browser/extensions/extension_install_ui.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_install_ui.h b/chrome/browser/extensions/extension_install_ui.h
index 14c5f93..83c165e 100644..100755
--- a/chrome/browser/extensions/extension_install_ui.h
+++ b/chrome/browser/extensions/extension_install_ui.h
@@ -112,7 +112,15 @@ class ExtensionInstallUI : public ImageLoadingTracker::Observer {
// NOTE: The implementations of this function is platform-specific.
static void ShowExtensionInstallUIPromptImpl(
Profile* profile, Delegate* delegate, Extension* extension,
- SkBitmap* icon, const string16& warning_text, PromptType type);
+ SkBitmap* icon, const string16& warning, PromptType type);
+
+#if defined(OS_WIN)
+ // Implements the showing of the new install dialog. The implementations of
+ // this function are platform-specific.
+ static void ShowExtensionInstallUIPrompt2Impl(
+ Profile* profile, Delegate* delegate, Extension* extension,
+ SkBitmap* icon, const std::vector<std::wstring>& permissions);
+#endif
Profile* profile_;
MessageLoop* ui_loop_;