Home | History | Annotate | Download | only in common

Lines Matching defs:manifest_path

21 // |manifest_path| is an absolute path to a manifest file.
22 base::DictionaryValue* LoadManifestFile(const base::FilePath& manifest_path,
24 base::FilePath extension_path = manifest_path.DirName();
26 EXPECT_TRUE(base::PathExists(manifest_path)) <<
27 "Couldn't find " << manifest_path.value();
29 JSONFileValueSerializer serializer(manifest_path);
38 manifest_path.value().find(FILE_PATH_LITERAL("localized")) !=
84 base::FilePath manifest_path = test_data_dir.AppendASCII(name_);
85 manifest_ = LoadManifestFile(manifest_path, error);
98 base::FilePath manifest_path = GetTestDataDir().AppendASCII(manifest_name);
99 return make_scoped_ptr(LoadManifestFile(manifest_path, error));