summaryrefslogtreecommitdiffstats
path: root/base/field_trial.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/field_trial.h')
-rw-r--r--base/field_trial.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/field_trial.h b/base/field_trial.h
index a812d4d..99e213c 100644
--- a/base/field_trial.h
+++ b/base/field_trial.h
@@ -70,11 +70,11 @@ class FieldTrialList : NonThreadSafe {
// of the application. In some experiments it may be useful to discount
// data that is gathered before the application has reach sufficient
// stability (example: most DLL have loaded, etc.)
- static Time application_start_time() {
+ static base::Time application_start_time() {
if (global_)
return global_->application_start_time_;
// For testing purposes only, or when we don't yet have a start time.
- return Time::Now();
+ return base::Time::Now();
}
private:
@@ -86,7 +86,7 @@ class FieldTrialList : NonThreadSafe {
static FieldTrialList* global_; // The singleton of this class.
static int constructor_count_; // Prevent having more than one.
- Time application_start_time_;
+ base::Time application_start_time_;
RegistrationList registered_;
DISALLOW_COPY_AND_ASSIGN(FieldTrialList);