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

Side by Side Diff: chrome/browser/metrics/chrome_metrics_service_client.h

Issue 365133005: Refactor SetClientID such that metrics rather than crash backs up the client id in Google Update set (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits:grt Created 6 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 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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/google/google_update_settings_posix.cc ('k') | chrome/browser/metrics/chrome_metrics_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698