OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_ |
6 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_ | 6 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 | 11 |
10 #include "base/basictypes.h" | 12 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
12 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
13 #include "base/time/time.h" | 15 #include "base/time/time.h" |
14 #include "base/version.h" | 16 #include "base/version.h" |
| 17 #include "build/build_config.h" |
15 #include "chrome/installer/util/util_constants.h" | 18 #include "chrome/installer/util/util_constants.h" |
16 #include "components/metrics/client_info.h" | 19 #include "components/metrics/client_info.h" |
17 | 20 |
18 class AppRegistrationData; | 21 class AppRegistrationData; |
19 class BrowserDistribution; | 22 class BrowserDistribution; |
20 | 23 |
21 namespace installer { | 24 namespace installer { |
22 class ChannelInfo; | 25 class ChannelInfo; |
23 class InstallationState; | 26 class InstallationState; |
24 } | 27 } |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 // this will do nothing to |experiment_labels|. This will return true if the | 317 // this will do nothing to |experiment_labels|. This will return true if the |
315 // label did not exist, or was successfully read. | 318 // label did not exist, or was successfully read. |
316 static bool ReadExperimentLabels(bool system_install, | 319 static bool ReadExperimentLabels(bool system_install, |
317 base::string16* experiment_labels); | 320 base::string16* experiment_labels); |
318 | 321 |
319 private: | 322 private: |
320 DISALLOW_IMPLICIT_CONSTRUCTORS(GoogleUpdateSettings); | 323 DISALLOW_IMPLICIT_CONSTRUCTORS(GoogleUpdateSettings); |
321 }; | 324 }; |
322 | 325 |
323 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_ | 326 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_ |
OLD | NEW |