Home | History | Annotate | Download | only in base

Lines Matching refs:FeatureList

42 // The FeatureList class is used to determine whether a given feature is on or
55 // if (base::FeatureList::IsEnabled(kMyGreatFeature)) {
70 // After initialization (which should be done single-threaded), the FeatureList
77 class BASE_EXPORT FeatureList {
79 FeatureList();
80 ~FeatureList();
152 // Initializes and sets an instance of FeatureList with feature overrides via
160 // Returns the singleton instance of FeatureList. Will return null until an
162 static FeatureList* GetInstance();
166 static void SetInstance(std::unique_ptr<FeatureList> instance);
197 // Finalizes the initialization state of the FeatureList, so that no further
203 // public FeatureList::IsEnabled() static function on the global singleton.
204 // Requires the FeatureList to have already been fully initialized.
208 // invoked by the public FeatureList::GetFieldTrial() static function on the
209 // global singleton. Requires the FeatureList to have already been fully
255 DISALLOW_COPY_AND_ASSIGN(FeatureList);