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

Side by Side Diff: chrome/common/metrics/variations/uniformity_field_trials.h

Issue 12447006: Forward declare base::Time in uniformity trials. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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.
tfarina 2013/03/05 16:46:24 I know this might annoy people, but while you are
SteveT 2013/03/05 17:54:24 Sure!
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_COMMON_METRICS_VARIATIONS_UNIFORMITY_FIELD_TRIALS_H_ 5 #ifndef CHROME_COMMON_METRICS_VARIATIONS_UNIFORMITY_FIELD_TRIALS_H_
6 #define CHROME_COMMON_METRICS_VARIATIONS_UNIFORMITY_FIELD_TRIALS_H_ 6 #define CHROME_COMMON_METRICS_VARIATIONS_UNIFORMITY_FIELD_TRIALS_H_
7 7
8 #include "base/time.h" 8 namespace base {
9 class Time;
10 }
9 11
10 namespace chrome_variations { 12 namespace chrome_variations {
11 13
12 // A collection of one-time-randomized and session-randomized field trials 14 // A collection of one-time-randomized and session-randomized field trials
13 // intended to test the uniformity and correctness of the field trial control, 15 // intended to test the uniformity and correctness of the field trial control,
14 // bucketing and reporting systems. 16 // bucketing and reporting systems.
15 void SetupUniformityFieldTrials(const base::Time& install_date); 17 void SetupUniformityFieldTrials(const base::Time install_date);
16 18
17 } // namespace chrome_variations 19 } // namespace chrome_variations
18 20
19 #endif // CHROME_COMMON_METRICS_VARIATIONS_UNIFORMITY_FIELD_TRIALS_H_ 21 #endif // CHROME_COMMON_METRICS_VARIATIONS_UNIFORMITY_FIELD_TRIALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698