| 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_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ |
| 6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ | 6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 // Factory function. | 46 // Factory function. |
| 47 static scoped_ptr<ChromeMetricsServiceClient> Create( | 47 static scoped_ptr<ChromeMetricsServiceClient> Create( |
| 48 metrics::MetricsStateManager* state_manager, | 48 metrics::MetricsStateManager* state_manager, |
| 49 PrefService* local_state); | 49 PrefService* local_state); |
| 50 | 50 |
| 51 // Registers local state prefs used by this class. | 51 // Registers local state prefs used by this class. |
| 52 static void RegisterPrefs(PrefRegistrySimple* registry); | 52 static void RegisterPrefs(PrefRegistrySimple* registry); |
| 53 | 53 |
| 54 // metrics::MetricsServiceClient: | 54 // metrics::MetricsServiceClient: |
| 55 virtual void SetClientID(const std::string& client_id) OVERRIDE; | 55 virtual void SetMetricsClientId(const std::string& client_id) OVERRIDE; |
| 56 virtual bool IsOffTheRecordSessionActive() OVERRIDE; | 56 virtual bool IsOffTheRecordSessionActive() OVERRIDE; |
| 57 virtual std::string GetApplicationLocale() OVERRIDE; | 57 virtual std::string GetApplicationLocale() OVERRIDE; |
| 58 virtual bool GetBrand(std::string* brand_code) OVERRIDE; | 58 virtual bool GetBrand(std::string* brand_code) OVERRIDE; |
| 59 virtual metrics::SystemProfileProto::Channel GetChannel() OVERRIDE; | 59 virtual metrics::SystemProfileProto::Channel GetChannel() OVERRIDE; |
| 60 virtual std::string GetVersionString() OVERRIDE; | 60 virtual std::string GetVersionString() OVERRIDE; |
| 61 virtual void OnLogUploadComplete() OVERRIDE; | 61 virtual void OnLogUploadComplete() OVERRIDE; |
| 62 virtual void StartGatheringMetrics( | 62 virtual void StartGatheringMetrics( |
| 63 const base::Closure& done_callback) OVERRIDE; | 63 const base::Closure& done_callback) OVERRIDE; |
| 64 virtual void CollectFinalMetrics(const base::Closure& done_callback) | 64 virtual void CollectFinalMetrics(const base::Closure& done_callback) |
| 65 OVERRIDE; | 65 OVERRIDE; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 // The MemoryGrowthTracker instance that tracks memory usage growth in | 168 // The MemoryGrowthTracker instance that tracks memory usage growth in |
| 169 // MemoryDetails. | 169 // MemoryDetails. |
| 170 MemoryGrowthTracker memory_growth_tracker_; | 170 MemoryGrowthTracker memory_growth_tracker_; |
| 171 | 171 |
| 172 base::WeakPtrFactory<ChromeMetricsServiceClient> weak_ptr_factory_; | 172 base::WeakPtrFactory<ChromeMetricsServiceClient> weak_ptr_factory_; |
| 173 | 173 |
| 174 DISALLOW_COPY_AND_ASSIGN(ChromeMetricsServiceClient); | 174 DISALLOW_COPY_AND_ASSIGN(ChromeMetricsServiceClient); |
| 175 }; | 175 }; |
| 176 | 176 |
| 177 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ | 177 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ |
| OLD | NEW |