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

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

Issue 10957016: Ensuring Google Update at user-level is installed alongside App Host, for the quick-enable App Host… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing time-out, and wait for Google Update to install; moving flag to InstallerState; adding to … Created 8 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 2ed6c4f98d6849964e88607352f1547ae01b7216..68c11c3b295b8cea6624a197a89a107047ccfde2 100644
--- a/chrome/installer/util/util_constants.h
+++ b/chrome/installer/util/util_constants.h
@@ -76,12 +76,13 @@ enum InstallStatus {
INCONSISTENT_UPDATE_POLICY, // 43. Inconsistent update policy GP settings.
APP_HOST_REQUIRES_USER_LEVEL, // 44. --system-level is forbidden.
APP_HOST_REQUIRES_BINARIES, // 45. No Chrome binaries at either level.
+ INSTALL_OF_GOOGLE_UPDATE_FAILED, // 46. Failed to install Google Update.
// Friendly reminder: note the COMPILE_ASSERT below.
};
// Existing InstallStatus values must not change. Always add to the end.
-COMPILE_ASSERT(installer::APP_HOST_REQUIRES_BINARIES == 45,
+COMPILE_ASSERT(installer::INSTALL_OF_GOOGLE_UPDATE_FAILED == 46,
dont_change_enum);
// The type of an update archive.
@@ -142,6 +143,7 @@ extern const char kDoNotLaunchChrome[];
extern const char kDoNotRegisterForUpdateLaunch[];
extern const char kDoNotRemoveSharedItems[];
extern const char kEnableLogging[];
+extern const char kEnsureGoogleUpdatePresent[];
extern const char kForceUninstall[];
extern const char kInstallArchive[];
extern const char kInstallerData[];

Powered by Google App Engine
This is Rietveld 408576698