summaryrefslogtreecommitdiffstats
path: root/base/field_trial.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/field_trial.cc')
-rw-r--r--base/field_trial.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/base/field_trial.cc b/base/field_trial.cc
index 9fd9d8f..c88ab65 100644
--- a/base/field_trial.cc
+++ b/base/field_trial.cc
@@ -15,13 +15,9 @@ using base::Time;
// 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;
}