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 COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_ | 5 #ifndef COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_ |
6 #define COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_ | 6 #define COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
8 #include "components/metrics/metrics_service_client.h" | 10 #include "components/metrics/metrics_service_client.h" |
9 | 11 |
10 namespace metrics { | 12 namespace metrics { |
11 | 13 |
12 // A simple concrete implementation of the MetricsServiceClient interface, for | 14 // A simple concrete implementation of the MetricsServiceClient interface, for |
13 // use in tests. | 15 // use in tests. |
14 class TestMetricsServiceClient : public MetricsServiceClient { | 16 class TestMetricsServiceClient : public MetricsServiceClient { |
15 public: | 17 public: |
16 TestMetricsServiceClient(); | 18 TestMetricsServiceClient(); |
17 virtual ~TestMetricsServiceClient(); | 19 virtual ~TestMetricsServiceClient(); |
18 | 20 |
19 // MetricsServiceClient: | 21 // MetricsServiceClient: |
20 virtual void SetClientID(const std::string& client_id) OVERRIDE; | 22 virtual void SetClientID(const std::string& client_id) OVERRIDE; |
21 virtual bool IsOffTheRecordSessionActive() OVERRIDE; | 23 virtual bool IsOffTheRecordSessionActive() OVERRIDE; |
22 virtual std::string GetApplicationLocale() OVERRIDE; | 24 virtual std::string GetApplicationLocale() OVERRIDE; |
23 virtual bool GetBrand(std::string* brand_code) OVERRIDE; | 25 virtual bool GetBrand(std::string* brand_code) OVERRIDE; |
24 virtual SystemProfileProto::Channel GetChannel() OVERRIDE; | 26 virtual SystemProfileProto::Channel GetChannel() OVERRIDE; |
25 virtual std::string GetVersionString() OVERRIDE; | 27 virtual std::string GetVersionString() OVERRIDE; |
| 28 virtual void OnFinalLogCollection(const base::Closure& done_callback) |
| 29 OVERRIDE; |
26 | 30 |
27 const std::string& get_client_id() const { return client_id_; } | 31 const std::string& get_client_id() const { return client_id_; } |
28 | 32 |
29 private: | 33 private: |
30 std::string client_id_; | 34 std::string client_id_; |
31 }; | 35 }; |
32 | 36 |
33 } // namespace metrics | 37 } // namespace metrics |
34 | 38 |
35 #endif // COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_ | 39 #endif // COMPONENTS_METRICS_TEST_METRICS_SERVICE_CLIENT_H_ |
OLD | NEW |