HomeSort by relevance Sort by last modified time
    Searched defs:manifest_path (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_apitest.cc 17 base::FilePath manifest_path = temp_dir.path().AppendASCII( local
20 extensions::CreateTestNativeHostManifest(manifest_path));
24 manifest_path.AsUTF8Unsafe().c_str());
native_message_process_host_unittest.cc 210 base::FilePath manifest_path = temp_dir_.path().AppendASCII( local
212 ASSERT_NO_FATAL_FAILURE(CreateTestNativeHostManifest(manifest_path));
216 manifest_path.AsUTF8Unsafe().c_str());
native_process_launcher.cc 140 base::FilePath manifest_path = local
142 if (manifest_path.empty())
143 manifest_path = FindManifest(native_host_name, &error_message);
145 if (manifest_path.empty()) {
152 manifest = NativeMessagingHostManifest::Load(manifest_path, &error_message);
180 host_path = manifest_path.DirName().Append(host_path);
  /external/chromium/chrome/browser/extensions/
app_background_page_apitest.cc 31 FilePath manifest_path = app_dir_.path().AppendASCII("manifest.json"); local
32 int bytes_written = file_util::WriteFile(manifest_path,
convert_user_script.cc 134 FilePath manifest_path = temp_dir.path().Append( local
136 JSONFileValueSerializer serializer(manifest_path);
extension_ui_unittest.cc 30 FilePath manifest_path = extension_path.Append( local
33 manifest_path, &error));
convert_web_app.cc 136 FilePath manifest_path = temp_dir.path().Append( local
138 JSONFileValueSerializer serializer(manifest_path);
extension_icon_manager_unittest.cc 104 FilePath manifest_path = test_dir.AppendASCII( local
107 JSONFileValueSerializer serializer(manifest_path);
113 manifest_path.DirName(), Extension::INVALID, *manifest.get(),
sandboxed_extension_unpacker.cc 444 FilePath manifest_path = local
446 if (!file_util::WriteFile(manifest_path,
  /external/chromium_org/chrome/browser/extensions/
app_background_page_apitest.cc 45 base::FilePath manifest_path = app_dir_.path().AppendASCII("manifest.json"); local
46 int bytes_written = file_util::WriteFile(manifest_path,
convert_user_script.cc 159 base::FilePath manifest_path = temp_dir.path().Append(kManifestFilename); local
160 JSONFileValueSerializer serializer(manifest_path);
convert_web_app.cc 147 base::FilePath manifest_path = temp_dir.path().Append(kManifestFilename); local
148 JSONFileValueSerializer serializer(manifest_path);
extension_icon_manager_unittest.cc 108 base::FilePath manifest_path = test_dir.AppendASCII( local
111 JSONFileValueSerializer serializer(manifest_path);
118 manifest_path.DirName(), Manifest::INVALID_LOCATION, *manifest.get(),
150 base::FilePath manifest_path = test_dir.AppendASCII( local
153 JSONFileValueSerializer serializer(manifest_path);
160 manifest_path.DirName(), Manifest::COMPONENT, *manifest.get(),
extension_ui_unittest.cc 73 base::FilePath manifest_path = extension_path.Append(kManifestFilename); local
75 manifest_path, &error));
sandboxed_unpacker.cc 625 base::FilePath manifest_path = local
627 if (!file_util::WriteFile(manifest_path,
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifest_test.cc 25 base::FilePath manifest_path; local
27 PathService::Get(chrome::DIR_TEST_DATA, &manifest_path);
28 manifest_path = manifest_path.Append(filename_path);
29 extension_path = manifest_path.DirName();
31 EXPECT_TRUE(base::PathExists(manifest_path)) <<
32 "Couldn't find " << manifest_path.value();
34 JSONFileValueSerializer serializer(manifest_path);
  /external/chromium_org/chrome/browser/chromeos/input_method/
component_extension_ime_manager_impl.cc 253 const base::FilePath manifest_path = local
257 !base::PathExists(manifest_path))
260 if (!file_util::ReadFileToString(manifest_path, &component_ime.manifest))
  /external/chromium_org/chrome/utility/extensions/
unpacker.cc 109 base::FilePath manifest_path = local
111 if (!base::PathExists(manifest_path)) {
116 JSONFileValueSerializer serializer(manifest_path);
  /external/chromium/chrome/browser/themes/
browser_theme_pack_unittest.cc 400 FilePath manifest_path = local
403 JSONFileValueSerializer serializer(manifest_path);
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 93 FilePath manifest_path = local
95 if (!file_util::PathExists(manifest_path)) {
100 JSONFileValueSerializer serializer(manifest_path);
extension_unpacker.cc 95 FilePath manifest_path = local
97 if (!file_util::PathExists(manifest_path)) {
102 JSONFileValueSerializer serializer(manifest_path);
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.cc 110 const base::FilePath& manifest_path) {
111 JSONFileValueSerializer serializer(manifest_path);
123 base::FilePath manifest_path = GetPlatformDir(unpack_path).AppendASCII( local
125 if (!base::PathExists(manifest_path))
127 return ReadJSONManifest(manifest_path);
133 base::FilePath manifest_path = unpack_path.Append( local
135 if (!base::PathExists(manifest_path))
137 return ReadJSONManifest(manifest_path);
  /external/chromium_org/chrome/common/extensions/api/
extension_api_unittest.cc 734 base::FilePath manifest_path; local
735 PathService::Get(chrome::DIR_TEST_DATA, &manifest_path);
736 manifest_path = manifest_path.AppendASCII("extensions")
741 ASSERT_TRUE(file_util::ReadFileToString(manifest_path, &manifest_str))
742 << "Failed to load: " << manifest_path.value();
    [all...]
  /external/chromium_org/chrome/common/extensions/
extension_file_util.cc 170 base::FilePath manifest_path = local
172 if (!base::PathExists(manifest_path)) {
177 JSONFileValueSerializer serializer(manifest_path);
  /external/chromium_org/chrome/browser/extensions/api/identity/
identity_apitest.cc 347 base::FilePath manifest_path = local
352 ext = LoadExtension(manifest_path);
    [all...]

Completed in 628 milliseconds

1 2