diff options
author | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 00:08:37 +0000 |
---|---|---|
committer | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-29 00:08:37 +0000 |
commit | e68d5358f23687c4a668ea6d2f9577e28d84a53f (patch) | |
tree | 2f19c6f3118e67200cb90f231ad01aff2a7b4e1d /chrome/installer/util/html_dialog_impl.cc | |
parent | 90c2c10f9d47a9ede7e17e067f5e0fe0030dbf57 (diff) | |
download | chromium_src-e68d5358f23687c4a668ea6d2f9577e28d84a53f.zip chromium_src-e68d5358f23687c4a668ea6d2f9577e28d84a53f.tar.gz chromium_src-e68d5358f23687c4a668ea6d2f9577e28d84a53f.tar.bz2 |
Changes the in-application EULA dialog to not require the checkbox be checked to accept the EULA.
Review URL: http://codereview.chromium.org/19436
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8839 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/html_dialog_impl.cc')
-rw-r--r-- | chrome/installer/util/html_dialog_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/html_dialog_impl.cc b/chrome/installer/util/html_dialog_impl.cc index 80fb112..2bbf57a 100644 --- a/chrome/installer/util/html_dialog_impl.cc +++ b/chrome/installer/util/html_dialog_impl.cc @@ -174,7 +174,7 @@ EulaHTMLDialog::~EulaHTMLDialog() { bool EulaHTMLDialog::ShowModal() { Customizer customizer; HTMLDialog::DialogResult dr = dialog_->ShowModal(NULL, &customizer); - return (HTMLDialog::HTML_DLG_ACCEPT == dr); + return (HTMLDialog::HTML_DLG_ACCEPT == dr || HTMLDialog::HTML_DLG_EXTRA == dr); } } // namespace installer |