1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/installer/util/google_update_settings.h"
#include "base/registry.h"
#include "chrome/installer/util/google_update_constants.h"
namespace {
std::wstring GetClientStateKeyPath(const bool use_medium_key) {
std::wstring reg_path(use_medium_key ?
google_update::kRegPathClientStateMedium :
google_update::kRegPathClientState);
reg_path.append(L"\\");
reg_path.append(google_update::kChromeGuid);
return reg_path;
}
bool ReadGoogleUpdateStrKey(const wchar_t* const name, std::wstring* value) {
std::wstring reg_path = GetClientStateKeyPath(false);
RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ);
if (!key.ReadValue(name, value)) {
RegKey hklm_key(HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_READ);
return hklm_key.ReadValue(name, value);
}
return true;
}
bool ClearGoogleUpdateStrKey(const wchar_t* const name) {
std::wstring reg_path = GetClientStateKeyPath(false);
RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ | KEY_WRITE);
std::wstring value;
if (!key.ReadValue(name, &value))
return false;
return key.WriteValue(name, L"");
}
} // namespace.
bool GoogleUpdateSettings::GetCollectStatsConsent() {
std::wstring reg_path = GetClientStateKeyPath(false);
RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ);
DWORD value;
if (!key.ReadValueDW(google_update::kRegUsageStatsField, &value)) {
RegKey hklm_key(HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_READ);
if (!hklm_key.ReadValueDW(google_update::kRegUsageStatsField, &value))
return false;
}
return (1 == value);
}
bool GoogleUpdateSettings::SetCollectStatsConsent(bool consented) {
std::wstring reg_path = GetClientStateKeyPath(false);
RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ | KEY_WRITE);
return key.WriteValue(google_update::kRegUsageStatsField, consented? 1 : 0);
}
bool GoogleUpdateSettings::SetEULAConsent(bool consented) {
std::wstring reg_path = GetClientStateKeyPath(true);
RegKey key(HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_READ | KEY_SET_VALUE);
return key.WriteValue(google_update::kRegEULAAceptedField, consented? 1 : 0);
}
bool GoogleUpdateSettings::GetBrowser(std::wstring* browser) {
return ReadGoogleUpdateStrKey(google_update::kRegBrowserField, browser);
}
bool GoogleUpdateSettings::GetLanguage(std::wstring* language) {
return ReadGoogleUpdateStrKey(google_update::kRegLangField, language);
}
bool GoogleUpdateSettings::GetBrand(std::wstring* brand) {
return ReadGoogleUpdateStrKey(google_update::kRegRLZBrandField, brand);
}
bool GoogleUpdateSettings::GetReferral(std::wstring* referral) {
return ReadGoogleUpdateStrKey(google_update::kRegReferralField, referral);
}
bool GoogleUpdateSettings::ClearReferral() {
return ClearGoogleUpdateStrKey(google_update::kRegReferralField);
}
|