| Index: chrome/browser/metrics/variations/chrome_variations_service_client.h
|
| diff --git a/chrome/browser/metrics/variations/chrome_variations_service_client.h b/chrome/browser/metrics/variations/chrome_variations_service_client.h
|
| index dfaa202fcff78e919bf4ff950445cd3c2e8bfbe6..5eb7f3cfd7feb64ac2c84688dec3503361bc5bd5 100644
|
| --- a/chrome/browser/metrics/variations/chrome_variations_service_client.h
|
| +++ b/chrome/browser/metrics/variations/chrome_variations_service_client.h
|
| @@ -8,6 +8,10 @@
|
| #include "base/basictypes.h"
|
| #include "components/variations/variations_service_client.h"
|
|
|
| +#if defined(OS_WIN)
|
| +#include "chrome/browser/metrics/variations/variations_registry_syncer_win.h"
|
| +#endif
|
| +
|
| // ChromeVariationsServiceClient provides an implementation of
|
| // VariationsServiceClient that depends on chrome/.
|
| class ChromeVariationsServiceClient
|
| @@ -18,8 +22,17 @@ class ChromeVariationsServiceClient
|
|
|
| // chrome_variations::VariationsServiceClient:
|
| std::string GetApplicationLocale() override;
|
| + void OnInitialStartup() override;
|
|
|
| private:
|
| +#if defined(OS_WIN)
|
| + // Starts syncing Google Update Variation IDs with the registry.
|
| + void StartGoogleUpdateRegistrySync();
|
| +
|
| + // Helper that handles synchronizing Variations with the Registry.
|
| + chrome_variations::VariationsRegistrySyncer registry_syncer_;
|
| +#endif
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ChromeVariationsServiceClient);
|
| };
|
|
|
|
|