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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_METRICS_METRICS_SERVICE_CLIENT_H_
6 #define COMPONENTS_METRICS_METRICS_SERVICE_CLIENT_H_
11 #include "base/basictypes.h"
12 #include "base/callback_forward.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/strings/string16.h"
15 #include "base/time/time.h"
16 #include "components/metrics/proto/system_profile.pb.h"
20 class MetricsLogUploader
;
22 // An abstraction of operations that depend on the embedder's (e.g. Chrome)
24 class MetricsServiceClient
{
26 virtual ~MetricsServiceClient() {}
28 // Registers the client id with other services (e.g. crash reporting), called
29 // when metrics recording gets enabled.
30 virtual void SetMetricsClientId(const std::string
& client_id
) = 0;
32 // Whether there's an "off the record" (aka "Incognito") session active.
33 virtual bool IsOffTheRecordSessionActive() = 0;
35 // Returns the product value to use in uploaded reports, which will be used to
36 // set the ChromeUserMetricsExtension.product field. See comments on that
37 // field on why it's an int32 rather than an enum.
38 virtual int32_t GetProduct() = 0;
40 // Returns the current application locale (e.g. "en-US").
41 virtual std::string
GetApplicationLocale() = 0;
43 // Retrieves the brand code string associated with the install, returning
44 // false if no brand code is available.
45 virtual bool GetBrand(std::string
* brand_code
) = 0;
47 // Returns the release channel (e.g. stable, beta, etc) of the application.
48 virtual SystemProfileProto::Channel
GetChannel() = 0;
50 // Returns the version of the application as a string.
51 virtual std::string
GetVersionString() = 0;
53 // Called by the metrics service when a log has been uploaded.
54 virtual void OnLogUploadComplete() = 0;
56 // Starts gathering metrics, calling |done_callback| when initial metrics
57 // gathering is complete.
58 virtual void StartGatheringMetrics(const base::Closure
& done_callback
) = 0;
60 // Called prior to a metrics log being closed, allowing the client to collect
61 // extra histograms that will go in that log. Asynchronous API - the client
62 // implementation should call |done_callback| when complete.
63 virtual void CollectFinalMetrics(const base::Closure
& done_callback
) = 0;
65 // Creates a MetricsLogUploader with the specified parameters (see comments on
66 // MetricsLogUploader for details).
67 virtual scoped_ptr
<MetricsLogUploader
> CreateUploader(
68 const base::Callback
<void(int)>& on_upload_complete
) = 0;
70 // Returns the standard interval between upload attempts.
71 virtual base::TimeDelta
GetStandardUploadInterval() = 0;
73 // Returns the name of a key under HKEY_CURRENT_USER that can be used to store
74 // backups of metrics data. Unused except on Windows.
75 virtual base::string16
GetRegistryBackupKey();
78 } // namespace metrics
80 #endif // COMPONENTS_METRICS_METRICS_SERVICE_CLIENT_H_