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

Unified Diff: chrome/installer/mini_installer/mini_installer_constants.cc

Issue 2663003003: Fix -full fallback for diff updates (M56). (Closed)
Patch Set: Created 3 years, 11 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/mini_installer/mini_installer_constants.cc
diff --git a/chrome/installer/mini_installer/mini_installer_constants.cc b/chrome/installer/mini_installer/mini_installer_constants.cc
index e21e433a8ca7d810e8e4908f47dcd7d6100b4fee..751d25b7495340ebf74282a45a21578b06f20142 100644
--- a/chrome/installer/mini_installer/mini_installer_constants.cc
+++ b/chrome/installer/mini_installer/mini_installer_constants.cc
@@ -50,12 +50,16 @@ const wchar_t kCleanupRegistryValue[] = L"ChromeInstallerCleanup";
const wchar_t kInstallerErrorRegistryValue[] = L"InstallerError";
const wchar_t kInstallerExtraCode1RegistryValue[] = L"InstallerExtraCode1";
const wchar_t kInstallerResultRegistryValue[] = L"InstallerResult";
+const wchar_t kPvRegistryValue[] = L"pv";
+const wchar_t kUninstallArgumentsRegistryValue[] = L"UninstallArguments";
// The name of an app's Client State registry value that holds the path to its
// uninstaller.
const wchar_t kUninstallRegistryValue[] = L"UninstallString";
// Registry key paths.
#if defined(GOOGLE_CHROME_BUILD)
+// The path to the key containing each app's Clients registry key.
+const wchar_t kClientsKeyBase[] = L"Software\\Google\\Update\\Clients\\";
huangs 2017/01/31 17:40:04 NIT: Mention that the terminating "\\" is importan
grt (UTC plus 2) 2017/02/02 08:17:16 Done.
// The path to the key containing each app's Client State registry key.
const wchar_t kClientStateKeyBase[] =
L"Software\\Google\\Update\\ClientState\\";
@@ -63,6 +67,9 @@ const wchar_t kClientStateKeyBase[] =
const wchar_t kCleanupRegistryKey[] =
L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Google Chrome";
#else
+// The path to the key containing each app's Clients registry key.
+// No trailing slash on this one because the app's GUID is not appended.
+const wchar_t kClientsKeyBase[] = L"Software\\Chromium";
// The path to the key containing each app's Client State registry key.
// No trailing slash on this one because the app's GUID is not appended.
const wchar_t kClientStateKeyBase[] = L"Software\\Chromium";

Powered by Google App Engine
This is Rietveld 408576698