google_update_constants.cc revision f2477e01787aa58f445919b809d89e252beef54f
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
3// found in the LICENSE file.
4
5#include "chrome/installer/util/google_update_constants.h"
6
7namespace google_update {
8
9const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}";
10
11const wchar_t kExperimentLabels[] = L"experiment_labels";
12const wchar_t kExperimentLabelSep[] = L";";
13
14const wchar_t kGoogleUpdateUpgradeCode[] =
15    L"{430FD4D0-B729-4F61-AA34-91526481799D}";
16
17const wchar_t kGoogleUpdateSetupExe[] = L"GoogleUpdateSetup.exe";
18
19const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients";
20const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState";
21const wchar_t kRegPathClientStateMedium[] =
22    L"Software\\Google\\Update\\ClientStateMedium";
23const wchar_t kRegPathGoogleUpdate[] = L"Software\\Google\\Update";
24
25const wchar_t kRegCommandsKey[] = L"Commands";
26
27const wchar_t kRegApField[] = L"ap";
28const wchar_t kRegAutoRunOnOSUpgradeField[] = L"AutoRunOnOSUpgrade";
29const wchar_t kRegBrandField[] = L"brand";
30const wchar_t kRegBrowserField[] = L"browser";
31const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd";
32const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd";
33const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd";
34const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd";
35const wchar_t kRegClientField[] = L"client";
36const wchar_t kRegCommandLineField[] = L"CommandLine";
37const wchar_t kRegCriticalVersionField[] = L"cpv";
38const wchar_t kRegDidRunField[] = L"dr";
39const wchar_t kRegEULAAceptedField[] = L"eulaaccepted";
40const wchar_t kRegGoogleUpdateVersion[] = L"version";
41const wchar_t kRegLangField[] = L"lang";
42const wchar_t kRegLastStartedAUField[] = L"LastStartedAU";
43const wchar_t kRegLastCheckedField[] = L"LastChecked";
44const wchar_t kRegLastCheckSuccessField[] = L"LastCheckSuccess";
45const wchar_t kRegLastInstallerResultField[] = L"LastInstallerResult";
46const wchar_t kRegLastInstallerErrorField[] = L"LastInstallerError";
47const wchar_t kRegLastInstallerExtraField[] = L"LastInstallerExtraCode1";
48const wchar_t kRegLastRunTimeField[] = L"lastrun";
49const wchar_t kRegMetricsId[] = L"metricsid";
50const wchar_t kRegMSIField[] = L"msi";
51const wchar_t kRegNameField[] = L"name";
52const wchar_t kRegOemInstallField[] = L"oeminstall";
53const wchar_t kRegOldVersionField[] = L"opv";
54const wchar_t kRegOopcrashesField[] = L"oopcrashes";
55const wchar_t kRegPathField[] = L"path";
56const wchar_t kRegRLZBrandField[] = L"brand";
57const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand";
58const wchar_t kRegReferralField[] = L"referral";
59const wchar_t kRegRenameCmdField[] = L"cmd";
60const wchar_t kRegRunAsUserField[] = L"RunAsUser";
61const wchar_t kRegSendsPingsField[] = L"SendsPings";
62const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine";
63const wchar_t kRegUsageStatsField[] = L"usagestats";
64const wchar_t kRegVersionField[] = L"pv";
65const wchar_t kRegWebAccessibleField[] = L"WebAccessible";
66
67}  // namespace google_update
68