Searched refs:CheckFeatureIdentity (Results 1 - 3 of 3) sorted by relevance

/external/libchrome/base/
H A Dfeature_list.h172 FRIEND_TEST_ALL_PREFIXES(FeatureListTest, CheckFeatureIdentity);
236 bool CheckFeatureIdentity(const Feature& feature);
H A Dfeature_list_unittest.cc111 TEST_F(FeatureListTest, CheckFeatureIdentity) {
112 // Tests that CheckFeatureIdentity() correctly detects when two different
117 EXPECT_TRUE(feature_list()->CheckFeatureIdentity(kFeatureOnByDefault));
118 EXPECT_TRUE(feature_list()->CheckFeatureIdentity(kFeatureOnByDefault));
119 EXPECT_TRUE(feature_list()->CheckFeatureIdentity(kFeatureOffByDefault));
120 EXPECT_TRUE(feature_list()->CheckFeatureIdentity(kFeatureOffByDefault));
127 EXPECT_FALSE(feature_list()->CheckFeatureIdentity(kFeatureOnByDefault2));
H A Dfeature_list.cc214 DCHECK(CheckFeatureIdentity(feature)) << feature.name;
237 DCHECK(CheckFeatureIdentity(feature)) << feature.name;
287 bool FeatureList::CheckFeatureIdentity(const Feature& feature) { function in class:base::FeatureList

Completed in 70 milliseconds