| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ | 5 #ifndef CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ |
| 6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ | 6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 class ArcOptInPreferenceHandler; | 28 class ArcOptInPreferenceHandler; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace chrome { | 31 namespace chrome { |
| 32 void AttemptRestart(); | 32 void AttemptRestart(); |
| 33 namespace android { | 33 namespace android { |
| 34 class ExternalDataUseObserverBridge; | 34 class ExternalDataUseObserverBridge; |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 namespace component_updater { | |
| 39 class ComponentUpdateService; | |
| 40 } | |
| 41 | |
| 42 namespace domain_reliability { | 38 namespace domain_reliability { |
| 43 class DomainReliabilityServiceFactory; | 39 class DomainReliabilityServiceFactory; |
| 44 } | 40 } |
| 45 | 41 |
| 46 namespace extensions { | 42 namespace extensions { |
| 47 class ChromeExtensionWebContentsObserver; | 43 class ChromeExtensionWebContentsObserver; |
| 48 class ChromeMetricsPrivateDelegate; | 44 class ChromeMetricsPrivateDelegate; |
| 49 class FileManagerPrivateIsUMAEnabledFunction; | 45 class FileManagerPrivateIsUMAEnabledFunction; |
| 50 } | 46 } |
| 51 | 47 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 // with g_browser_process->metrics_service(). See that function's declaration | 149 // with g_browser_process->metrics_service(). See that function's declaration |
| 154 // for details. | 150 // for details. |
| 155 static bool RegisterSyntheticFieldTrialWithNameHash( | 151 static bool RegisterSyntheticFieldTrialWithNameHash( |
| 156 uint32_t trial_name_hash, | 152 uint32_t trial_name_hash, |
| 157 const std::string& group_name); | 153 const std::string& group_name); |
| 158 | 154 |
| 159 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeMetricsServiceAccessor); | 155 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeMetricsServiceAccessor); |
| 160 }; | 156 }; |
| 161 | 157 |
| 162 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ | 158 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ |
| OLD | NEW |