Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Side by Side Diff: chrome/browser/metrics/variations/variations_registry_syncer_win.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 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_VARIATIONS_REGISTRY_SYNCER_WIN_H_ 5 #ifndef CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_
6 #define CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_ 6 #define CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_
7 7
8 #include "base/macros.h"
8 #include "base/timer/timer.h" 9 #include "base/timer/timer.h"
9 10
10 namespace chrome_variations { 11 namespace chrome_variations {
11 12
12 // This class manages synchronizing active VariationIDs with the Google Update 13 // This class manages synchronizing active VariationIDs with the Google Update
13 // experiment_labels value in the registry. 14 // experiment_labels value in the registry.
14 class VariationsRegistrySyncer { 15 class VariationsRegistrySyncer {
15 public: 16 public:
16 VariationsRegistrySyncer(); 17 VariationsRegistrySyncer();
17 ~VariationsRegistrySyncer(); 18 ~VariationsRegistrySyncer();
(...skipping 14 matching lines...) Expand all
32 // the UI thread. The timer effectively allows this class to batch together 33 // the UI thread. The timer effectively allows this class to batch together
33 // update requests, to avoid reading and writing from the registry too much. 34 // update requests, to avoid reading and writing from the registry too much.
34 base::OneShotTimer timer_; 35 base::OneShotTimer timer_;
35 36
36 DISALLOW_COPY_AND_ASSIGN(VariationsRegistrySyncer); 37 DISALLOW_COPY_AND_ASSIGN(VariationsRegistrySyncer);
37 }; 38 };
38 39
39 } // namespace chrome_variations 40 } // namespace chrome_variations
40 41
41 #endif // CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_ 42 #endif // CHROME_BROWSER_METRICS_VARIATIONS_VARIATIONS_REGISTRY_SYNCER_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698