Disable accessible touch exploration by default.
[chromium-blink-merge.git] / chrome / browser / google / google_update_settings_posix.cc
blobe6dad5efe6a502859af30257cdb3095b5b3946ce
1 // Copyright (c) 2011 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.
5 #include "chrome/installer/util/google_update_settings.h"
7 #include "base/file_util.h"
8 #include "base/lazy_instance.h"
9 #include "base/path_service.h"
10 #include "base/strings/string_util.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "base/synchronization/lock.h"
13 #include "chrome/common/chrome_paths.h"
15 namespace {
17 base::LazyInstance<std::string>::Leaky g_posix_client_id =
18 LAZY_INSTANCE_INITIALIZER;
19 base::LazyInstance<base::Lock>::Leaky g_posix_client_id_lock =
20 LAZY_INSTANCE_INITIALIZER;
22 // File name used in the user data dir to indicate consent.
23 const char kConsentToSendStats[] = "Consent To Send Stats";
25 } // namespace
27 // static
28 bool GoogleUpdateSettings::GetCollectStatsConsent() {
29 base::FilePath consent_file;
30 PathService::Get(chrome::DIR_USER_DATA, &consent_file);
31 consent_file = consent_file.Append(kConsentToSendStats);
33 if (!base::DirectoryExists(consent_file.DirName()))
34 return false;
36 std::string tmp_guid;
37 bool consented = base::ReadFileToString(consent_file, &tmp_guid);
38 if (consented) {
39 base::AutoLock lock(g_posix_client_id_lock.Get());
40 g_posix_client_id.Get().assign(tmp_guid);
42 return consented;
45 // static
46 bool GoogleUpdateSettings::SetCollectStatsConsent(bool consented) {
47 base::FilePath consent_dir;
48 PathService::Get(chrome::DIR_USER_DATA, &consent_dir);
49 if (!base::DirectoryExists(consent_dir))
50 return false;
52 base::AutoLock lock(g_posix_client_id_lock.Get());
54 base::FilePath consent_file = consent_dir.AppendASCII(kConsentToSendStats);
55 if (consented) {
56 if ((!base::PathExists(consent_file)) ||
57 (base::PathExists(consent_file) && !g_posix_client_id.Get().empty())) {
58 const char* c_str = g_posix_client_id.Get().c_str();
59 int size = g_posix_client_id.Get().size();
60 return base::WriteFile(consent_file, c_str, size) == size;
62 } else {
63 g_posix_client_id.Get().clear();
64 return base::DeleteFile(consent_file, false);
66 return true;
69 // static
70 // TODO(gab): Implement storing/loading for all ClientInfo fields on POSIX.
71 scoped_ptr<metrics::ClientInfo> GoogleUpdateSettings::LoadMetricsClientInfo() {
72 scoped_ptr<metrics::ClientInfo> client_info(new metrics::ClientInfo);
74 base::AutoLock lock(g_posix_client_id_lock.Get());
75 if (g_posix_client_id.Get().empty())
76 return scoped_ptr<metrics::ClientInfo>();
77 client_info->client_id = g_posix_client_id.Get();
79 return client_info.Pass();
82 // static
83 // TODO(gab): Implement storing/loading for all ClientInfo fields on POSIX.
84 void GoogleUpdateSettings::StoreMetricsClientInfo(
85 const metrics::ClientInfo& client_info) {
86 // Make sure that user has consented to send crashes.
87 if (!GoogleUpdateSettings::GetCollectStatsConsent())
88 return;
91 // Since user has consented, write the metrics id to the file.
92 base::AutoLock lock(g_posix_client_id_lock.Get());
93 g_posix_client_id.Get() = client_info.client_id;
95 GoogleUpdateSettings::SetCollectStatsConsent(true);
98 // GetLastRunTime and SetLastRunTime are not implemented for posix. Their
99 // current return values signal failure which the caller is designed to
100 // handle.
102 // static
103 int GoogleUpdateSettings::GetLastRunTime() {
104 return -1;
107 // static
108 bool GoogleUpdateSettings::SetLastRunTime() {
109 return false;