diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 13:32:11 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 13:32:11 +0000 |
commit | be70495941b62d96d81e27b525ee65d1a67f29f2 (patch) | |
tree | dd52930fb7a1530934bc34a99ac52e92d78179b9 /chrome/installer | |
parent | 446510d79070b428742f90337b768d9133988d96 (diff) | |
download | chromium_src-be70495941b62d96d81e27b525ee65d1a67f29f2.zip chromium_src-be70495941b62d96d81e27b525ee65d1a67f29f2.tar.gz chromium_src-be70495941b62d96d81e27b525ee65d1a67f29f2.tar.bz2 |
Fix a typo that got mistakenly checked in that overwrote the --delete-profile flag.
BUG=51692
TEST=CF uninstalls delete the profile directory.
Review URL: http://codereview.chromium.org/3172001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55714 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/util_constants.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/util_constants.cc b/chrome/installer/util/util_constants.cc index d6b4efe..e6f62e2 100644 --- a/chrome/installer/util/util_constants.cc +++ b/chrome/installer/util/util_constants.cc @@ -19,7 +19,7 @@ const wchar_t kCreateAllShortcuts[] = L"create-all-shortcuts"; // Delete user profile data. This param is useful only when specified with // kUninstall, otherwise it is silently ignored. -const wchar_t kDeleteProfile[] = L"1"; +const wchar_t kDeleteProfile[] = L"delete-profile"; // Disable logging const wchar_t kDisableLogging[] = L"disable-logging"; |