OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "base/rand_util.h" | |
12 #include "base/string_util.h" | 11 #include "base/string_util.h" |
13 #include "chrome/common/chrome_paths.h" | 12 #include "chrome/common/chrome_paths.h" |
14 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
15 | 14 |
16 namespace google_update { | 15 namespace google_update { |
17 std::string posix_guid; | 16 std::string posix_guid; |
18 } | 17 } |
19 | 18 |
20 // File name used in the user data dir to indicate consent. | 19 // File name used in the user data dir to indicate consent. |
21 static const char kConsentToSendStats[] = "Consent To Send Stats"; | 20 static const char kConsentToSendStats[] = "Consent To Send Stats"; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 75 |
77 // static | 76 // static |
78 int GoogleUpdateSettings::GetLastRunTime() { | 77 int GoogleUpdateSettings::GetLastRunTime() { |
79 return -1; | 78 return -1; |
80 } | 79 } |
81 | 80 |
82 // static | 81 // static |
83 bool GoogleUpdateSettings::SetLastRunTime() { | 82 bool GoogleUpdateSettings::SetLastRunTime() { |
84 return false; | 83 return false; |
85 } | 84 } |
OLD | NEW |