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

1 2

  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_test_util.h 17 void CreateTestNativeHostManifest(base::FilePath manifest_path);
native_messaging_apitest.cc 18 base::FilePath manifest_path = temp_dir.path().AppendASCII( local
21 extensions::CreateTestNativeHostManifest(manifest_path));
25 manifest_path.AsUTF8Unsafe().c_str());
native_messaging_test_util.cc 22 void CreateTestNativeHostManifest(base::FilePath manifest_path) {
44 JSONFileValueSerializer serializer(manifest_path);
native_process_launcher.cc 144 base::FilePath manifest_path = local
146 if (manifest_path.empty())
147 manifest_path = FindManifest(native_host_name, &error_message);
149 if (manifest_path.empty()) {
156 manifest = NativeMessagingHostManifest::Load(manifest_path, &error_message);
184 host_path = manifest_path.DirName().Append(host_path);
native_process_launcher_win.cc 66 base::FilePath manifest_path(manifest_path_str);
67 if (!manifest_path.IsAbsolute()) {
72 return manifest_path;
native_message_process_host_unittest.cc 255 base::FilePath manifest_path = temp_dir_.path().AppendASCII( local
257 ASSERT_NO_FATAL_FAILURE(CreateTestNativeHostManifest(manifest_path));
261 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);
  /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/build/android/gyp/
lint.py 22 def _RunLint(lint_path, config_path, processed_config_path, manifest_path,
86 cmd.append(_RelativizePath(os.path.join(manifest_path, os.pardir)))
137 'processed_config_path', 'manifest_path',
148 options.manifest_path, options.result_path,
  /external/chromium_org/components/nacl/browser/
nacl_host_message_filter.cc 81 base::FilePath manifest_path; local
86 manifest_url, false /* use_blocking_api */, &manifest_path);
87 host->Launch(this, reply_msg, manifest_path);
nacl_process_host.h 83 const base::FilePath& manifest_path);
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.cc 124 const base::FilePath& manifest_path) {
125 JSONFileValueSerializer serializer(manifest_path);
137 base::FilePath manifest_path = GetPlatformDir(unpack_path).AppendASCII( local
139 if (!base::PathExists(manifest_path))
141 return ReadJSONManifest(manifest_path);
147 base::FilePath manifest_path = unpack_path.Append( local
149 if (!base::PathExists(manifest_path))
151 return ReadJSONManifest(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 263 const base::FilePath manifest_path = local
267 !base::PathExists(manifest_path))
270 if (!base::ReadFileToString(manifest_path, &component_ime.manifest))
  /external/chromium_org/chrome/utility/extensions/
unpacker.cc 117 base::FilePath manifest_path = local
119 if (!base::PathExists(manifest_path)) {
124 JSONFileValueSerializer serializer(manifest_path);
  /external/chromium_org/chrome/browser/chromeos/
customization_document.h 47 virtual bool LoadManifestFromFile(const base::FilePath& manifest_path);

Completed in 356 milliseconds

1 2