HomeSort by relevance Sort by last modified time
    Searched refs:manifest_path (Results 1 - 25 of 46) 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_messaging_test_util.h 17 void CreateTestNativeHostManifest(base::FilePath manifest_path);
native_messaging_test_util.cc 22 void CreateTestNativeHostManifest(base::FilePath manifest_path) {
44 JSONFileValueSerializer serializer(manifest_path);
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);
native_process_launcher_win.cc 65 base::FilePath manifest_path(manifest_path_str);
66 if (!manifest_path.IsAbsolute()) {
71 return manifest_path;
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());
  /frameworks/webview/chromium/tools/
generate_local_manifest.py 17 def createLocalManifest(manifest_path, local_manifest_path, path_to_exclude):
18 manifest_tree = ET.parse(manifest_path)
55 manifest_path = os.path.join(android_build_top, '.repo/manifests',
62 print 'Path to manifest file: %s' % manifest_path
63 createLocalManifest(manifest_path, local_manifest_path, path_to_exclude)
  /external/chromium_org/android_webview/buildbot/
generate_local_manifest.py 17 def createLocalManifest(manifest_path, local_manifest_path, path_to_exclude,
19 manifest_tree = ET.parse(manifest_path)
80 manifest_path = os.path.join(android_build_top, '.repo/manifests',
94 print 'Path to manifest file: %s' % manifest_path
95 createLocalManifest(manifest_path, local_manifest_path, path_to_exclude,
  /external/chromium_org/chrome/browser/extensions/
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(),
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);
  /external/chromium/chrome/browser/extensions/
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(),
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);
convert_web_app.cc 136 FilePath manifest_path = temp_dir.path().Append( local
138 JSONFileValueSerializer serializer(manifest_path);
extension_ui_unittest.cc 30 FilePath manifest_path = extension_path.Append( local
33 manifest_path, &error));
  /development/testrunner/
android_manifest.py 121 manifest_path = os.path.join(path, AndroidManifest.FILENAME)
122 if os.path.isfile(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/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/docs/server2/
manifest_data_source.py 17 manifest_path,
19 self._manifest_path = manifest_path
  /external/chromium/chrome/common/extensions/
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/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_org/chrome/browser/chromeos/
customization_document.h 47 virtual bool LoadManifestFromFile(const base::FilePath& manifest_path);
  /external/chromium_org/chrome/browser/nacl_host/
nacl_process_host.h 69 const base::FilePath& manifest_path);

Completed in 444 milliseconds

1 2