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

Side by Side Diff: chrome/browser/google/google_update_settings_posix.cc

Issue 16950028: Move file_util::Delete to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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) 2011 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_settings.h" 5 #include "chrome/installer/util/google_update_settings.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
10 #include "chrome/common/chrome_paths.h" 10 #include "chrome/common/chrome_paths.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 if (consented) { 44 if (consented) {
45 if ((!file_util::PathExists(consent_file)) || 45 if ((!file_util::PathExists(consent_file)) ||
46 (file_util::PathExists(consent_file) && 46 (file_util::PathExists(consent_file) &&
47 !google_update::posix_guid().empty())) { 47 !google_update::posix_guid().empty())) {
48 const char* c_str = google_update::posix_guid().c_str(); 48 const char* c_str = google_update::posix_guid().c_str();
49 int size = google_update::posix_guid().size(); 49 int size = google_update::posix_guid().size();
50 return file_util::WriteFile(consent_file, c_str, size) == size; 50 return file_util::WriteFile(consent_file, c_str, size) == size;
51 } 51 }
52 } else { 52 } else {
53 google_update::posix_guid().clear(); 53 google_update::posix_guid().clear();
54 return file_util::Delete(consent_file, false); 54 return base::Delete(consent_file, false);
55 } 55 }
56 return true; 56 return true;
57 } 57 }
58 58
59 bool GoogleUpdateSettings::SetMetricsId(const std::wstring& client_id) { 59 bool GoogleUpdateSettings::SetMetricsId(const std::wstring& client_id) {
60 // Make sure that user has consented to send crashes. 60 // Make sure that user has consented to send crashes.
61 base::FilePath consent_dir; 61 base::FilePath consent_dir;
62 PathService::Get(chrome::DIR_USER_DATA, &consent_dir); 62 PathService::Get(chrome::DIR_USER_DATA, &consent_dir);
63 if (!file_util::DirectoryExists(consent_dir) || 63 if (!file_util::DirectoryExists(consent_dir) ||
64 !GoogleUpdateSettings::GetCollectStatsConsent()) 64 !GoogleUpdateSettings::GetCollectStatsConsent())
(...skipping 10 matching lines...) Expand all
75 75
76 // static 76 // static
77 int GoogleUpdateSettings::GetLastRunTime() { 77 int GoogleUpdateSettings::GetLastRunTime() {
78 return -1; 78 return -1;
79 } 79 }
80 80
81 // static 81 // static
82 bool GoogleUpdateSettings::SetLastRunTime() { 82 bool GoogleUpdateSettings::SetLastRunTime() {
83 return false; 83 return false;
84 } 84 }
OLDNEW
« no previous file with comments | « chrome/browser/first_run/first_run_browsertest.cc ('k') | chrome/browser/google_apis/base_requests_server_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698