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

Side by Side Diff: chrome/installer/util/google_update_constants.cc

Issue 9693055: Launch Google Update on uninstall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comments Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/installer/util/google_update_constants.h" 5 #include "chrome/installer/util/google_update_constants.h"
6 6
7 namespace google_update { 7 namespace google_update {
8 8
9 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}"; 9 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}";
10 10
11 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; 11 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients";
12 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; 12 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState";
13 const wchar_t kRegPathClientStateMedium[] 13 const wchar_t kRegPathClientStateMedium[]
14 = L"Software\\Google\\Update\\ClientStateMedium"; 14 = L"Software\\Google\\Update\\ClientStateMedium";
15 const wchar_t kRegPathGoogleUpdate[] = L"Software\\Google\\Update";
15 16
16 const wchar_t kRegCommandsKey[] = L"Commands"; 17 const wchar_t kRegCommandsKey[] = L"Commands";
17 18
18 const wchar_t kRegApField[] = L"ap"; 19 const wchar_t kRegApField[] = L"ap";
19 const wchar_t kRegBrandField[] = L"brand"; 20 const wchar_t kRegBrandField[] = L"brand";
20 const wchar_t kRegBrowserField[] = L"browser"; 21 const wchar_t kRegBrowserField[] = L"browser";
21 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; 22 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd";
22 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; 23 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd";
23 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; 24 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd";
24 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; 25 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd";
25 const wchar_t kRegClientField[] = L"client"; 26 const wchar_t kRegClientField[] = L"client";
26 const wchar_t kRegCommandLineField[] = L"CommandLine"; 27 const wchar_t kRegCommandLineField[] = L"CommandLine";
27 const wchar_t kRegCriticalVersionField[] = L"cpv"; 28 const wchar_t kRegCriticalVersionField[] = L"cpv";
28 const wchar_t kRegDidRunField[] = L"dr"; 29 const wchar_t kRegDidRunField[] = L"dr";
29 const wchar_t kRegEULAAceptedField[] = L"eulaaccepted"; 30 const wchar_t kRegEULAAceptedField[] = L"eulaaccepted";
30 const wchar_t kRegLangField[] = L"lang"; 31 const wchar_t kRegLangField[] = L"lang";
31 const wchar_t kRegLastCheckedField[] = L"LastChecked"; 32 const wchar_t kRegLastCheckedField[] = L"LastChecked";
32 const wchar_t kRegLastRunTimeField[] = L"lastrun"; 33 const wchar_t kRegLastRunTimeField[] = L"lastrun";
33 const wchar_t kRegMetricsId[] = L"metricsid"; 34 const wchar_t kRegMetricsId[] = L"metricsid";
34 const wchar_t kRegMSIField[] = L"msi"; 35 const wchar_t kRegMSIField[] = L"msi";
35 const wchar_t kRegNameField[] = L"name"; 36 const wchar_t kRegNameField[] = L"name";
36 const wchar_t kRegOemInstallField[] = L"oeminstall"; 37 const wchar_t kRegOemInstallField[] = L"oeminstall";
37 const wchar_t kRegOldVersionField[] = L"opv"; 38 const wchar_t kRegOldVersionField[] = L"opv";
38 const wchar_t kRegOopcrashesField[] = L"oopcrashes"; 39 const wchar_t kRegOopcrashesField[] = L"oopcrashes";
39 const wchar_t kRegRLZBrandField[] = L"brand"; 40 const wchar_t kRegRLZBrandField[] = L"brand";
40 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; 41 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand";
41 const wchar_t kRegReferralField[] = L"referral"; 42 const wchar_t kRegReferralField[] = L"referral";
42 const wchar_t kRegRenameCmdField[] = L"cmd"; 43 const wchar_t kRegRenameCmdField[] = L"cmd";
43 const wchar_t kRegSendsPingsField[] = L"SendsPings"; 44 const wchar_t kRegSendsPingsField[] = L"SendsPings";
45 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine";
44 const wchar_t kRegUsageStatsField[] = L"usagestats"; 46 const wchar_t kRegUsageStatsField[] = L"usagestats";
45 const wchar_t kRegVersionField[] = L"pv"; 47 const wchar_t kRegVersionField[] = L"pv";
46 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; 48 const wchar_t kRegWebAccessibleField[] = L"WebAccessible";
47 49
48 } // namespace google_update 50 } // namespace google_update
OLDNEW
« no previous file with comments | « chrome/installer/util/google_update_constants.h ('k') | chrome/installer/util/google_update_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698