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

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

Issue 216153006: Invoke setup.exe to reenable updates when the update bubble is clicked. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mad2
Patch Set: Created 6 years, 9 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 d8ab60a0bd02525fe84422011d44d044c2a45097..d5d6281e99ae47e8b8ae57139f2b83b9e8d71af3 100644
--- a/chrome/installer/util/util_constants.h
+++ b/chrome/installer/util/util_constants.h
@@ -90,12 +90,15 @@ enum InstallStatus {
UNUSED_BINARIES_UNINSTALLED, // 52. The binaries were uninstalled.
UNSUPPORTED_OPTION, // 53. An unsupported legacy option was given.
CPU_NOT_SUPPORTED, // 54. Current OS not supported
+ REENABLE_UPDATES_SUCCEEDED, // 55. Autoupdates are now enabled.
+ REENABLE_UPDATES_FAILED, // 56. Autoupdates could not be enabled.
+
// Friendly reminder: note the COMPILE_ASSERT below.
};
// Existing InstallStatus values must not change. Always add to the end.
-COMPILE_ASSERT(installer::CPU_NOT_SUPPORTED == 54,
+COMPILE_ASSERT(installer::REENABLE_UPDATES_FAILED == 56,
dont_change_enum);
// The type of an update archive.
@@ -167,6 +170,7 @@ extern const char kMultiInstall[];
extern const char kNewSetupExe[];
extern const char kOnOsUpgrade[];
extern const char kQueryEULAAcceptance[];
+extern const char kReenableAutoupdates[];
extern const char kRegisterChromeBrowser[];
extern const char kRegisterChromeBrowserSuffix[];
extern const char kRegisterDevChrome[];

Powered by Google App Engine
This is Rietveld 408576698