diff options
author | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-11 19:24:26 +0000 |
---|---|---|
committer | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-11 19:24:26 +0000 |
commit | 74417a819d52539d3b23ab4fc22143f080cc575c (patch) | |
tree | 551fbea34d046295b32b9d250c12a3491c1143ba /chrome/installer/util/google_update_constants.h | |
parent | b49c88564b3a9dd58046440d3754d57dca05fef8 (diff) | |
download | chromium_src-74417a819d52539d3b23ab4fc22143f080cc575c.zip chromium_src-74417a819d52539d3b23ab4fc22143f080cc575c.tar.gz chromium_src-74417a819d52539d3b23ab4fc22143f080cc575c.tar.bz2 |
Inform google_update that the user has acepted the EULA
- reg key lives in hklm but we can write it
BUG=b/1594565
Review URL: http://codereview.chromium.org/43061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11469 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/google_update_constants.h')
-rw-r--r-- | chrome/installer/util/google_update_constants.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/installer/util/google_update_constants.h b/chrome/installer/util/google_update_constants.h index f6b833f..72cfe0b 100644 --- a/chrome/installer/util/google_update_constants.h +++ b/chrome/installer/util/google_update_constants.h @@ -15,7 +15,12 @@ extern const wchar_t kChromeGuid[]; extern const wchar_t kGearsUpgradeCode[]; extern const wchar_t kRegPathClients[]; + +// The difference between ClientState and ClientStateMedium is that the former +// lives on HKCU or HKLM and the later always lives in HKLM. The only use of +// the ClientStateMedium is for the EULA consent. See bug 1594565. extern const wchar_t kRegPathClientState[]; +extern const wchar_t kRegPathClientStateMedium[]; extern const wchar_t kRegApField[]; extern const wchar_t kRegBrowserField[]; @@ -29,6 +34,7 @@ extern const wchar_t kRegRLZBrandField[]; extern const wchar_t kRegUsageStatsField[]; extern const wchar_t kRegVersionField[]; extern const wchar_t kRegReferralField[]; +extern const wchar_t kRegEULAAceptedField[]; extern const wchar_t kEnvProductVersionKey[]; } // namespace google_update |