diff options
author | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
---|---|---|
committer | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
commit | e1acf6f902e50222baf99bfb492ecc38a1604975 (patch) | |
tree | 503d45705b14be7e2f1ed86c71d6064abbf90fbe /base/field_trial.h | |
parent | a2f5993e1ce940e8a8eec900abaeed02e2eee09b (diff) | |
download | chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.zip chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.gz chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.bz2 |
Move Time, TimeDelta and TimeTicks into namespace base.
Review URL: http://codereview.chromium.org/7995
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/field_trial.h')
-rw-r--r-- | base/field_trial.h | 6 |
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); |