Chromium Code Reviews| Index: base/field_trial.cc |
| =================================================================== |
| --- base/field_trial.cc (revision 8409) |
| +++ base/field_trial.cc (working copy) |
| @@ -15,13 +15,9 @@ |
| // static |
| FieldTrialList* FieldTrialList::global_ = NULL; |
| -// static |
| -int FieldTrialList::constructor_count_ = 0; |
| - |
| FieldTrialList::FieldTrialList() |
| : application_start_time_(Time::Now()) { |
| - DCHECK(!constructor_count_); |
| - ++constructor_count_; |
| + DCHECK(!global_); |
| global_ = this; |
| } |