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_TEST_METRICS_SERVICE_CLIENT_H_
6 #define COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_
10 #include "components/metrics/metrics_service_client.h"
14 // A simple concrete implementation of the MetricsServiceClient interface, for
16 class TestMetricsServiceClient
: public MetricsServiceClient
{
18 static const char kBrandForTesting
[];
20 TestMetricsServiceClient();
21 ~TestMetricsServiceClient() override
;
23 // MetricsServiceClient:
24 void SetMetricsClientId(const std::string
& client_id
) override
;
25 bool IsOffTheRecordSessionActive() override
;
26 int32_t GetProduct() override
;
27 std::string
GetApplicationLocale() override
;
28 bool GetBrand(std::string
* brand_code
) override
;
29 SystemProfileProto::Channel
GetChannel() override
;
30 std::string
GetVersionString() override
;
31 void OnLogUploadComplete() override
;
32 void StartGatheringMetrics(const base::Closure
& done_callback
) override
;
33 void CollectFinalMetrics(const base::Closure
& done_callback
) override
;
34 scoped_ptr
<MetricsLogUploader
> CreateUploader(
35 const std::string
& server_url
,
36 const std::string
& mime_type
,
37 const base::Callback
<void(int)>& on_upload_complete
) override
;
39 const std::string
& get_client_id() const { return client_id_
; }
40 void set_version_string(const std::string
& str
) { version_string_
= str
; }
41 void set_product(int32_t product
) { product_
= product
; }
44 std::string client_id_
;
45 std::string version_string_
;
48 DISALLOW_COPY_AND_ASSIGN(TestMetricsServiceClient
);
51 } // namespace metrics
53 #endif // COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_