diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-19 07:43:18 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-19 07:43:18 +0000 |
commit | 74d829f4a8eded864fcd2b92ea336007ba70792f (patch) | |
tree | 0ada549c4f00638cc1e0d1e9715bd1f602a933c6 /chrome | |
parent | 21217cab5b687af94175570fc301b6e33dc4e085 (diff) | |
download | chromium_src-74d829f4a8eded864fcd2b92ea336007ba70792f.zip chromium_src-74d829f4a8eded864fcd2b92ea336007ba70792f.tar.gz chromium_src-74d829f4a8eded864fcd2b92ea336007ba70792f.tar.bz2 |
Fix compile error from 36513.
BUG=32361
TBR=tony@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36514 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/views/extensions/extension_install_prompt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/extensions/extension_install_prompt.cc b/chrome/browser/views/extensions/extension_install_prompt.cc index 6a65291..bf1f795 100644 --- a/chrome/browser/views/extensions/extension_install_prompt.cc +++ b/chrome/browser/views/extensions/extension_install_prompt.cc @@ -43,7 +43,7 @@ class InstallDialogContent : public views::View, public views::DialogDelegate { Extension* extension, SkBitmap* icon, const std::wstring& warning_text, bool is_uninstall) : delegate_(delegate), icon_(NULL), warning_(NULL), - is_uninstall_(NULL), create_shortcut_(NULL) { + create_shortcut_(NULL), is_uninstall_(false) { if (extension->IsApp()) { icon_size_ = kIconSizeApp; right_column_width_ = kRightColumnWidthApp; |