| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_VARIATIONS_CHROME_VARIATIONS_SERVICE_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_METRICS_VARIATIONS_CHROME_VARIATIONS_SERVICE_CLIENT_H_ |
| 6 #define CHROME_BROWSER_METRICS_VARIATIONS_CHROME_VARIATIONS_SERVICE_CLIENT_H_ | 6 #define CHROME_BROWSER_METRICS_VARIATIONS_CHROME_VARIATIONS_SERVICE_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/bind.h" |
| 9 #include "components/variations/service/variations_service_client.h" | 12 #include "components/variations/service/variations_service_client.h" |
| 13 #include "components/variations/variations_seed_store.h" |
| 14 |
| 15 #if defined(OS_ANDROID) |
| 16 #include "chrome/browser/android/preferences/pref_service_bridge.h" |
| 17 #endif // OS_ANDROID |
| 10 | 18 |
| 11 #if defined(OS_WIN) | 19 #if defined(OS_WIN) |
| 12 #include "chrome/browser/metrics/variations/variations_registry_syncer_win.h" | 20 #include "chrome/browser/metrics/variations/variations_registry_syncer_win.h" |
| 13 #endif | 21 #endif |
| 14 | 22 |
| 15 // ChromeVariationsServiceClient provides an implementation of | 23 // ChromeVariationsServiceClient provides an implementation of |
| 16 // VariationsServiceClient that depends on chrome/. | 24 // VariationsServiceClient that depends on chrome/. |
| 17 class ChromeVariationsServiceClient | 25 class ChromeVariationsServiceClient |
| 18 : public variations::VariationsServiceClient { | 26 : public variations::VariationsServiceClient { |
| 19 public: | 27 public: |
| 20 ChromeVariationsServiceClient(); | 28 ChromeVariationsServiceClient(); |
| 21 ~ChromeVariationsServiceClient() override; | 29 ~ChromeVariationsServiceClient() override; |
| 22 | 30 |
| 23 // variations::VariationsServiceClient: | 31 // variations::VariationsServiceClient: |
| 24 std::string GetApplicationLocale() override; | 32 std::string GetApplicationLocale() override; |
| 25 base::SequencedWorkerPool* GetBlockingPool() override; | 33 base::SequencedWorkerPool* GetBlockingPool() override; |
| 26 base::Callback<base::Version(void)> GetVersionForSimulationCallback() | 34 base::Callback<base::Version(void)> GetVersionForSimulationCallback() |
| 27 override; | 35 override; |
| 28 net::URLRequestContextGetter* GetURLRequestContext() override; | 36 net::URLRequestContextGetter* GetURLRequestContext() override; |
| 29 network_time::NetworkTimeTracker* GetNetworkTimeTracker() override; | 37 network_time::NetworkTimeTracker* GetNetworkTimeTracker() override; |
| 30 version_info::Channel GetChannel() override; | 38 version_info::Channel GetChannel() override; |
| 31 bool OverridesRestrictParameter(std::string* parameter) override; | 39 bool OverridesRestrictParameter(std::string* parameter) override; |
| 32 void OnInitialStartup() override; | 40 void OnInitialStartup() override; |
| 33 | 41 |
| 42 #if defined(OS_ANDROID) |
| 43 base::Callback<void(std::string*, std::string*, std::string*)> |
| 44 GetVariationsFirstRunSeedCallback() override; |
| 45 #endif // OS_ANDROID |
| 46 |
| 34 private: | 47 private: |
| 35 #if defined(OS_WIN) | 48 #if defined(OS_WIN) |
| 36 // Starts syncing Google Update Variation IDs with the registry. | 49 // Starts syncing Google Update Variation IDs with the registry. |
| 37 void StartGoogleUpdateRegistrySync(); | 50 void StartGoogleUpdateRegistrySync(); |
| 38 | 51 |
| 39 // Helper that handles synchronizing Variations with the Registry. | 52 // Helper that handles synchronizing Variations with the Registry. |
| 40 chrome_variations::VariationsRegistrySyncer registry_syncer_; | 53 chrome_variations::VariationsRegistrySyncer registry_syncer_; |
| 41 #endif | 54 #endif |
| 42 | 55 |
| 43 DISALLOW_COPY_AND_ASSIGN(ChromeVariationsServiceClient); | 56 DISALLOW_COPY_AND_ASSIGN(ChromeVariationsServiceClient); |
| 44 }; | 57 }; |
| 45 | 58 |
| 46 #endif // CHROME_BROWSER_METRICS_VARIATIONS_CHROME_VARIATIONS_SERVICE_CLIENT_H_ | 59 #endif // CHROME_BROWSER_METRICS_VARIATIONS_CHROME_VARIATIONS_SERVICE_CLIENT_H_ |
| OLD | NEW |