Lines Matching refs:PathService
26 // Returns true if PathService::Get returns true and sets the path parameter
27 // to non-empty for the given PathService::DirType enumeration value.
30 bool result = PathService::Get(dir_type, &path);
85 bool result = PathService::Get(dir_type, &path);
96 // Test that all PathService::Get calls return a value and a true result
150 // Test that all versions of the Override function of PathService do what they
157 // PathService::Override should always create the path provided if it doesn't
159 EXPECT_TRUE(PathService::Override(my_special_key, fake_cache_dir));
163 // PathService::OverrideAndCreateIfNeeded should obey the |create| parameter.
164 PathService::OverrideAndCreateIfNeeded(my_special_key,
169 EXPECT_TRUE(PathService::OverrideAndCreateIfNeeded(my_special_key,
184 EXPECT_FALSE(PathService::OverrideAndCreateIfNeeded(my_special_key,
191 EXPECT_TRUE(PathService::OverrideAndCreateIfNeeded(my_special_key,
198 EXPECT_TRUE(PathService::Get(my_special_key, &path));
209 EXPECT_TRUE(PathService::Override(my_special_key, fake_cache_dir1));
214 EXPECT_TRUE(PathService::Override(my_special_key + 1, fake_cache_dir2));
219 EXPECT_TRUE(PathService::Get(my_special_key, &result));
223 EXPECT_TRUE(PathService::Get(my_special_key + 1, &result));
230 PathService::RemoveOverride(base::DIR_TEMP);
233 EXPECT_TRUE(PathService::Get(base::DIR_TEMP, &original_user_data_dir));
234 EXPECT_FALSE(PathService::RemoveOverride(base::DIR_TEMP));
238 EXPECT_TRUE(PathService::Override(base::DIR_TEMP, temp_dir.path()));
240 EXPECT_TRUE(PathService::Get(base::DIR_TEMP, &new_user_data_dir));
243 EXPECT_TRUE(PathService::RemoveOverride(base::DIR_TEMP));
244 EXPECT_TRUE(PathService::Get(base::DIR_TEMP, &new_user_data_dir));