Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2282)

Unified Diff: chrome/installer/util/util_constants.h

Issue 2333853002: Support --delete-old-versions in setup.exe. (Closed)
Patch Set: self-review Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/util_constants.h
diff --git a/chrome/installer/util/util_constants.h b/chrome/installer/util/util_constants.h
index 3fd49cf1c438c050b628fdd21a45580735fd7df0..e3f458fa3d4564c17b0ebea89ee060768212544e 100644
--- a/chrome/installer/util/util_constants.h
+++ b/chrome/installer/util/util_constants.h
@@ -95,8 +95,16 @@ enum InstallStatus {
SETUP_SINGLETON_ACQUISITION_FAILED = 60, // The setup process could not
// acquire the exclusive right to
// modify the Chrome installation.
+ SETUP_SINGLETON_RELEASED = 61, // The task did not complete because
+ // another process asked this
+ // process to release the exclusive
+ // right to modify the Chrome
+ // installation.
+ DELETE_OLD_VERSIONS_SUCCESS = 62, // All files that belong to old
+ // versions of Chrome were
+ // successfully deleted.
- MAX_INSTALL_STATUS = 61, // Bump this out to make space for new results.
+ MAX_INSTALL_STATUS = 63, // Bump this out to make space for new results.
};
// The type of an update archive.
@@ -140,6 +148,7 @@ extern const char kChromeFrame[];
extern const char kChromeSxS[];
extern const char kConfigureUserSettings[];
extern const char kCriticalUpdateVersion[];
+extern const char kDeleteOldVersions[];
extern const char kDeleteProfile[];
extern const char kDisableLogging[];
extern const char kDoNotLaunchChrome[];

Powered by Google App Engine
This is Rietveld 408576698