Searched refs:manifest (Results 76 - 100 of 372) sorted by relevance

1234567891011>>

/external/chromium_org/content/renderer/manifest/
H A Dmanifest_manager.cc5 #include "content/renderer/manifest/manifest_manager.h"
12 #include "content/renderer/manifest/manifest_parser.h"
52 int request_id, const Manifest& manifest) {
54 Manifest ipc_manifest = manifest;
108 // TODO(mlamouri,kenneth): this is not yet taking into account manifest-src
137 Manifest manifest = manifest_; local
144 it->Run(manifest);
51 OnRequestManifestComplete( int request_id, const Manifest& manifest) argument
H A Dmanifest_parser.cc5 #include "content/renderer/manifest/manifest_parser.h"
14 #include "content/public/common/manifest.h"
58 // Parses the 'name' field of the manifest, as defined in:
59 // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-name-member
65 // Parses the 'short_name' field of the manifest, as defined in:
66 // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-short-name-member
73 // Parses the 'start_url' field of the manifest, as defined in:
74 // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-start_url-member
91 // Parses the 'display' field of the manifest, as defined in:
92 // http://w3c.github.io/manifest/#df
302 Manifest manifest; local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dmksqlite3h.tcl8 # 3) The manifest file from the fossil SCM. This gives use the date.
9 # 4) The manifest.uuid file from the fossil SCM. This gives the SHA1 hash.
23 # hash of the fossil-scm manifest for the source tree.
44 # Get the fossil-scm version number from $TOP/manifest.uuid.
46 set in [open $TOP/manifest.uuid]
50 # Get the fossil-scm check-in date from the "D" card of $TOP/manifest.
52 set in [open $TOP/manifest]
/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dapp_launch_info.cc28 bool ReadLaunchDimension(const extensions::Manifest* manifest, argument
34 if (manifest->Get(key, &temp)) {
121 if (extension->manifest()->Get(keys::kLaunchLocalPath, &temp)) {
122 if (extension->manifest()->Get(keys::kLaunchWebURL, NULL)) {
127 if (extension->manifest()->Get(keys::kWebURLs, NULL)) {
150 } else if (extension->manifest()->Get(keys::kLaunchWebURL, &temp)) {
223 if (!extension->manifest()->Get(keys::kLaunchContainer,
245 if (!ReadLaunchDimension(extension->manifest(),
254 if (!ReadLaunchDimension(extension->manifest(),
H A Dapp_isolation_info.cc56 // We should only be parsing if the extension has the key in the manifest,
58 DCHECK(extension->manifest()->HasPath(keys::kIsolation));
61 if (!extension->manifest()->GetList(keys::kIsolation, &isolation_list)) {
/external/emma/core/java12/com/vladium/util/
H A DIPathEnumerator.java48 * is opened and the manifest entry is read.
50 void handleArchiveStart (File parentDir, File archive, Manifest manifest); argument
216 // I try to read the manifest again via a JarFile if the stream
223 Manifest manifest = in.getManifest (); // can be null
224 if (manifest == null) manifest = readManifestViaJarFile (fullArchive); // can be null
226 handler.handleArchiveStart (m_currentPathDir, new File (archive), manifest);
228 // note: this loop does not skip over the manifest-related
243 // note: JarInputStream only reads the manifest if it the
245 if (manifest
[all...]
/external/chromium_org/extensions/common/
H A Dextension.cc27 #include "extensions/common/manifest.h"
111 scoped_ptr<extensions::Manifest> manifest(
115 if (!InitExtensionID(manifest.get(), path, explicit_id, flags, &error)) {
121 if (!manifest->ValidateManifest(utf8_error, &install_warnings)) {
125 scoped_refptr<Extension> extension = new Extension(path, manifest.Pass());
398 return manifest()->is_app();
402 return manifest()->is_platform_app();
406 return manifest()->is_hosted_app();
410 return manifest()->is_legacy_packaged_app();
414 return manifest()
439 InitExtensionID(extensions::Manifest* manifest, const base::FilePath& path, const std::string& explicit_id, int creation_flags, base::string16* error) argument
479 Extension(const base::FilePath& path, scoped_ptr<extensions::Manifest> manifest) argument
735 ExtensionInfo(const base::DictionaryValue* manifest, const std::string& id, const base::FilePath& path, Manifest::Location location) argument
[all...]
H A Dextension_builder.cc41 scoped_ptr<base::DictionaryValue> manifest) {
42 manifest_ = manifest.Pass();
40 SetManifest( scoped_ptr<base::DictionaryValue> manifest) argument
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dcomponent_extension_ime_manager_impl.h33 const std::string& manifest,
45 // Parses manifest string to manifest json dictionary value.
51 static bool ReadExtensionInfo(const base::DictionaryValue& manifest,
56 // kInputComponents key from manifest. This function returns true on success,
/external/chromium_org/chrome/browser/component_updater/
H A Dcld_component_installer.h45 virtual bool OnCustomInstall(const base::DictionaryValue& manifest,
52 scoped_ptr<base::DictionaryValue> manifest) OVERRIDE;
/external/chromium_org/chrome/browser/extensions/
H A Dtest_extension_dir.cc24 void TestExtensionDir::WriteManifest(base::StringPiece manifest) { argument
25 // TODO(kalman): Write some more convenient way to specify a manifest than
28 WriteFile(FILE_PATH_LITERAL("manifest.json"), manifest);
H A Dtest_extension_prefs.cc147 const base::DictionaryValue& manifest, Manifest::Location location) {
148 return AddExtensionWithManifestAndFlags(manifest, location,
153 const base::DictionaryValue& manifest,
157 EXPECT_TRUE(manifest.GetString(manifest_keys::kName, &name));
161 path, location, manifest, extra_flags, &errors);
146 AddExtensionWithManifest( const base::DictionaryValue& manifest, Manifest::Location location) argument
152 AddExtensionWithManifestAndFlags( const base::DictionaryValue& manifest, Manifest::Location location, int extra_flags) argument
H A Dextension_special_storage_policy_unittest.cc15 #include "extensions/common/manifest.h"
105 base::DictionaryValue manifest; local
106 manifest.SetString(keys::kName, "Protected");
107 manifest.SetString(keys::kVersion, "1");
108 manifest.SetString(keys::kLaunchWebURL, "http://explicit/protected/start");
112 manifest.Set(keys::kWebURLs, list);
115 path, Manifest::INVALID_LOCATION, manifest,
127 base::DictionaryValue manifest; local
128 manifest.SetString(keys::kName, "Unlimited");
129 manifest
152 base::DictionaryValue manifest; local
[all...]
H A Dcomponent_loader.h65 // id of its manifest file.
90 // Parse the given JSON manifest. Returns NULL if it cannot be parsed, or if
112 ComponentExtensionInfo(const base::DictionaryValue* manifest,
115 // The parsed contents of the extensions's manifest file.
116 const base::DictionaryValue* manifest; member in struct:extensions::ComponentLoader::ComponentExtensionInfo
158 // Called with a |chromevox_path| and parsed |manifest| and invokes
163 scoped_ptr<base::DictionaryValue> manifest);
/external/chromium_org/components/component_updater/test/
H A Dtest_installer.h28 virtual bool Install(const base::DictionaryValue& manifest,
66 virtual bool Install(const base::DictionaryValue& manifest,
/external/chromium_org/extensions/common/manifest_handlers/
H A Dincognito_info.cc38 if (!extension->manifest()->HasKey(keys::kIncognito)) {
50 if (!extension->manifest()->GetString(keys::kIncognito, &incognito_string)) {
H A Doffline_enabled_info.cc41 if (!extension->manifest()->HasKey(keys::kOfflineEnabled)) {
57 if (!extension->manifest()->GetBoolean(keys::kOfflineEnabled,
H A Drequirements_info.cc19 RequirementsInfo::RequirementsInfo(const Manifest* manifest) argument
23 // Before parsing requirements from the manifest, automatically default the
26 npapi = manifest->GetList(keys::kPlugins, &list_value) &&
65 new RequirementsInfo(extension->manifest()));
67 if (!extension->manifest()->HasKey(keys::kRequirements)) {
73 if (!extension->manifest()->GetDictionary(keys::kRequirements,
/external/chromium_org/net/third_party/nss/ssl/
H A DMakefile11 include manifest.mn
/external/chromium_org/chrome/browser/android/
H A Dshortcut_helper.cc28 #include "content/public/common/manifest.h"
233 void ShortcutHelper::OnDidGetManifest(const content::Manifest& manifest) { argument
234 // Set the title based on the manifest value, if any.
235 if (!manifest.short_name.is_null())
236 title_ = manifest.short_name.string();
237 else if (!manifest.name.is_null())
238 title_ = manifest.name.string();
240 // Set the url based on the manifest value, if any.
241 if (manifest.start_url.is_valid())
242 url_ = manifest
[all...]
/external/chromium_org/tools/crx_id/
H A Dcrx_id.py98 manifest = json.load(f)
99 if 'key' not in manifest:
104 return base64.standard_b64decode(manifest['key'])
108 with open(os.path.join(filename, 'manifest.json'), 'rb') as f:
109 manifest = json.load(f)
110 return 'key' in manifest
121 f = open(os.path.join(filename, 'manifest.json'), 'rb')
/external/vixl/tools/
H A Dtest.py121 # Scan matching tests and return a test manifest.
133 # Run all tests in the manifest.
134 def RunTests(manifest):
135 count = len(manifest)
146 for test in manifest:
175 manifest = ReadManifest(args.filters) variable
182 status = RunTests(manifest)
/external/chromium_org/content/browser/appcache/
H A Dappcache_unittest.cc46 new AppCacheGroup(service.storage(), GURL("http://blah/manifest"), 111));
111 AppCacheManifest manifest; local
112 manifest.explicit_urls.insert("http://one.com");
113 manifest.explicit_urls.insert("http://two.com");
114 manifest.fallback_namespaces.push_back(
117 manifest.online_whitelist_namespaces.push_back(
120 manifest.online_whitelist_namespaces.push_back(
123 manifest.online_whitelist_all = true;
125 cache->InitializeWithManifest(&manifest);
141 // Ensure collections in manifest wer
177 AppCacheManifest manifest; local
368 AppCacheManifest manifest; local
439 AppCacheManifest manifest; local
509 AppCacheManifest manifest; local
565 AppCacheManifest manifest; local
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dcustomization_document.h45 void InitStartupCustomizationDocumentForTesting(const std::string& manifest);
63 virtual bool LoadManifestFromString(const std::string& manifest);
81 // may be ready or not (if manifest is missing or corrupted) and this state
110 const std::string& manifest);
118 const std::string& manifest);
137 // ready just after creation. Fetching of the manifest should be initiated
169 // Returns true if default wallpaper URL attribute found in manifest.
217 explicit ServicesCustomizationDocument(const std::string& manifest);
225 virtual bool LoadManifestFromString(const std::string& manifest) OVERRIDE;
242 void OnManifesteRead(const std::string& manifest);
[all...]
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_test_util.cc43 scoped_ptr<base::DictionaryValue> manifest(new base::DictionaryValue);
44 manifest->SetString(extensions::manifest_keys::kName, name);
45 manifest->SetString(extensions::manifest_keys::kVersion, "0.1");
46 manifest->SetInteger(extensions::manifest_keys::kManifestVersion, 2);
49 manifest->Set(extensions::manifest_keys::kPlatformAppBackgroundScripts,
61 manifest->Set(extensions::manifest_keys::kPermissions, permission_list);
69 *manifest.get(),

Completed in 1591 milliseconds

1234567891011>>