| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013 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. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_ | |
| 6 #define CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "base/timer/timer.h" | |
| 10 | |
| 11 namespace chrome_variations { | |
| 12 | |
| 13 // This class manages synchronizing active VariationIDs with the Google Update | |
| 14 // experiment_labels value in the registry. | |
| 15 class VariationsRegistrySyncer { | |
| 16 public: | |
| 17 VariationsRegistrySyncer(); | |
| 18 ~VariationsRegistrySyncer(); | |
| 19 | |
| 20 // Starts a timer that, when it expires, updates the registry with the current | |
| 21 // Variations associated with Google Update. If the timer is already running, | |
| 22 // calling this just resets the timer. | |
| 23 void RequestRegistrySync(); | |
| 24 | |
| 25 private: | |
| 26 // Starts the actual synchronization process with the registry. Posts a task | |
| 27 // to do it on the blocking pool to avoid jank. | |
| 28 void StartRegistrySync(); | |
| 29 | |
| 30 // A timer used to delay the writes to the registry. This is done to optimize | |
| 31 // the case where lazy-loaded features start their field trials some time | |
| 32 // after initial batch of field trials are created, and also to avoid blocking | |
| 33 // the UI thread. The timer effectively allows this class to batch together | |
| 34 // update requests, to avoid reading and writing from the registry too much. | |
| 35 base::OneShotTimer timer_; | |
| 36 | |
| 37 DISALLOW_COPY_AND_ASSIGN(VariationsRegistrySyncer); | |
| 38 }; | |
| 39 | |
| 40 } // namespace chrome_variations | |
| 41 | |
| 42 #endif // CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_ | |
| OLD | NEW |