HomeSort by relevance Sort by last modified time
    Searched full:manifest (Results 651 - 675 of 4304) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/common/extensions/api/
page_actions.json 16 {"type": "string", "name": "pageActionId", "description": "An extension can have multiple page actions specified in the manifest, each with a unique identifier. This string identifies which page action you want to enable (and must match a page action id declared in the manifest)."},
24 "title": {"type": "string", "optional": true, "description": "Specifying <b>title</b> allows you to change the tooltip that appears when you hover over the page action icon in the OmniBox. This parameter is optional and if omitted then the page action <b>name</b> property declared in the manifest is used."},
25 "iconId": {"type": "integer", "minimum": 0, "optional": true, "description": "A zero-based index into the <b>icons</b> vector specified in the manifest. This parameter is optional and if omitted then the first icon in the <b>icons</b> vector of the page action is used. This id is useful to represent different page action states. Example: An RSS feed icon could have a 'subscribe now' icon and an 'already subscribed' icon."}
36 {"type": "string", "name": "pageActionId", "description": "An extension can have multiple page actions specified in the manifest, each with a unique identifier. This string identifies which page action you want to disable (and must match a page action id declared in the manifest)."},
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
commands.html 1 <h2 id="manifest">Manifest</h2>
9 the manifest as an attribute of the 'commands' manifest key. An extension can
30 <pre data-filename="manifest.json">
62 defined in the manifest (except for '_execute_browser_action' and
pageAction.html 24 <h2 id="manifest">Manifest</h2>
28 <a href="manifest.html">extension manifest</a>
32 <pre data-filename="manifest.json">
54 <pre data-filename="manifest.json">
browserAction.html 18 <h2 id="manifest">Manifest</h2>
22 <a href="manifest.html">extension manifest</a>
26 <pre data-filename="manifest.json">
49 <pre data-filename="manifest.json">
93 in the <a href="#manifest">manifest</a>,
110 in the <a href="#manifest">manifest</a>
    [all...]
  /external/chromium_org/chrome/common/extensions/
extension_test_util.cc 21 using extensions::Manifest;
52 return Extension::Create(base::FilePath(), extensions::Manifest::INTERNAL,
58 Manifest::Location location,
82 Manifest::Location location,
91 Manifest::Location location,
104 return LoadManifest(dir, test_file, Manifest::INVALID_LOCATION, extra_flags);
  /external/chromium_org/chrome/common/extensions/features/
simple_feature.h 16 #include "extensions/common/manifest.h"
29 std::set<Manifest::Type>* extension_types() { return &extension_types_; }
72 Manifest::Type type,
83 Manifest::Type type,
98 Manifest::Type type) const;
110 std::set<Manifest::Type> extension_types_;
  /external/chromium_org/chrome/utility/extensions/
unpacker.h 13 #include "extensions/common/manifest.h"
31 Manifest::Location location,
56 // Parse the manifest.json file inside the extension (not in the header).
82 Manifest::Location location_;
90 // The parsed version of the manifest JSON contained in the extension.
94 // are relative to the manifest file.
  /external/chromium_org/extensions/browser/
file_highlighter.h 28 // Get the portion of the manifest which should not be highlighted and is
32 // Get the feature portion of the manifest, which should be highlighted.
35 // Get the portion of the manifest which should not be highlighted and is
59 // manifest.
68 // manifest, and once we parse it into Values, we lose any formatting the user
73 ManifestHighlighter(const std::string& manifest,
  /external/chromium_org/extensions/common/manifest_handlers/
csp_info.cc 82 if (!extension->manifest()->HasPath(key)) {
99 if (!extension->manifest()->GetString(key, &content_security_policy)) {
119 bool CSPHandler::AlwaysParseForType(Manifest::Type type) const {
121 return type == Manifest::TYPE_PLATFORM_APP;
123 return type == Manifest::TYPE_EXTENSION ||
124 type == Manifest::TYPE_LEGACY_PACKAGED_APP;
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_main.py 101 manifest = manifest_util.SDKManifest()
107 raise Error('Unable to read manifest from "%s".\n %s' % (path, e))
110 manifest.LoadDataFromString(manifest_string)
112 raise Error('Parsing local manifest "%s" failed.\n %s' % (path, e))
118 return manifest
121 def WriteLocalManifest(manifest):
129 manifest_json = manifest.GetDataAsString()
131 raise Error('Error encoding manifest "%s" to JSON.\n %s' % (path, e))
137 raise Error('Unable to write manifest to "%s".\n %s' % (path, e))
141 manifest = manifest_util.SDKManifest(
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
update_sdktools.py 16 any changes. Instead it modifies the manifest file in cloud storage."""
83 def UpdateManifest(manifest, revision):
84 sdk_tools_bundle = GetBundleByName(manifest['bundles'], 'sdk_tools')
94 manifest = JsonLoadFromString(manifest_string)
95 UpdateManifest(manifest, revision)
96 new_manifest_string = DictToJSON(manifest)
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
pnacl_translate_thread.h 29 class Manifest;
52 const Manifest* manifest,
77 const Manifest* manifest,
123 const Manifest* manifest_;
  /external/chromium_org/third_party/leveldatabase/src/db/
filename_test.cc 33 { "MANIFEST-2", 2, kDescriptorFile },
34 { "MANIFEST-7", 7, kDescriptorFile },
53 "manifest",
57 "MANIFEST",
58 "MANIFEST-",
60 "MANIFEST-3x",
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.h 32 * This API allows parsing manifest files. A manifest is a text file that contains
35 * The BNF syntax of a manifest file is :
57 /* The input file is a compiled manifest */
59 /* The input file is a source manifest */
61 /* The input file is a source manifest with sections */
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 50 * files) agree with the JAR entries information found in the JAR manifest.
67 private Manifest man;
120 * Verifies that the digests stored in the manifest match the decrypted
126 * if the digest value stored in the manifest does <i>not</i>
163 * as specified in the JAR MANIFEST format.
172 // If no manifest is present by the time an entry is found,
223 * entry in the {@code META-INF} directory including the manifest
285 byte[] manifest = metaEntries.get(JarFile.MANIFEST_NAME);
286 // Manifest entry is required for any verifications.
287 if (manifest == null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewInfoPart.java 17 package com.android.ide.eclipse.adt.internal.editors.manifest.pages;
20 import com.android.ide.eclipse.adt.internal.editors.manifest.ManifestEditor;
21 import com.android.ide.eclipse.adt.internal.editors.manifest.descriptors.AndroidManifestDescriptors;
32 * the manifest element.
41 "Manifest General Attributes", // section title
61 // No manifest descriptor: we have a dummy UiRootNode, so we return that.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfoTest.java 16 package com.android.ide.eclipse.adt.internal.editors.manifest;
47 "<manifest xmlns:android='http://schemas.android.com/apk/res/android'\n" +
50 "</manifest>\n");
61 "<manifest xmlns:android='http://schemas.android.com/apk/res/android'\n" +
64 "</manifest>\n");
75 "<manifest xmlns:android='http://schemas.android.com/apk/res/android'\n" +
78 "</manifest>\n");
89 "<manifest xmlns:android='http://schemas.android.com/apk/res/android'\n" +
105 "</manifest>\n" +
120 "<manifest xmlns:android='http://schemas.android.com/apk/res/android'\n"
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
AccountManagerTest.java 43 * Requires Permission: {@link android.Manifest.permission#GET_ACCOUNTS}.
58 * Requires Permission: {@link android.Manifest.permission#GET_ACCOUNTS}.
74 * Requires Permission: {@link android.Manifest.permission#GET_ACCOUNTS}.
NoKeyPermissionTest.java 41 * {@link android.Manifest.permission#DISABLE_KEYGUARD}.
57 * {@link android.Manifest.permission#DISABLE_KEYGUARD}.
73 * {@link android.Manifest.permission#DISABLE_KEYGUARD}.
  /device/sample/products/
sample_addon.mk 14 # Copy the manifest and hardware files for the SDK add-on.
17 device/sample/sdk_addon/manifest.ini:manifest.ini \
  /external/chromium/chrome/common/extensions/docs/static/
whats_new.html 5 This page lists the API and manifest changes
36 <li> If the manifest specifies "experimental" permission,
61 <a href="manifest.html#permissions">host permission</a>
90 <h4> Manifest changes </h4>
92 <li>The new <a href="manifest.html#bg">background</a> permission
119 <h4> Manifest changes </h4>
121 <li> The <a href="manifest.html#homepage_url">homepage_url</a> field
146 No API or manifest changes worth noting.
163 <h4> Manifest changes </h4>
165 <li> Introduced <a href="manifest.html#incognito">split incognito</a
    [all...]
  /external/chromium_org/chrome/browser/component_updater/test/
test_installer.cc 19 bool TestInstaller::Install(const base::DictionaryValue& manifest,
58 bool VersionedTestInstaller::Install(const base::DictionaryValue& manifest,
61 manifest.GetStringASCII("version", &version_string);
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher.cc 141 scoped_ptr<NativeMessagingHostManifest> manifest; local
143 // First check if the manifest location is specified in the command line.
150 LOG(ERROR) << "Can't find manifest for native messaging host "
156 manifest = NativeMessagingHostManifest::Load(manifest_path, &error_message);
158 if (!manifest) {
159 LOG(ERROR) << "Failed to load manifest for native messaging host "
165 if (manifest->name() != native_host_name) {
166 LOG(ERROR) << "Failed to load manifest for native messaging host "
168 << ": Invalid name specified in the manifest.";
173 if (!manifest->allowed_origins().MatchesSecurityOrigin(origin))
    [all...]
  /external/chromium_org/chrome/common/extensions/api/commands/
commands_handler.h 13 #include "extensions/common/manifest.h"
37 // Parses the "commands" manifest key.
44 virtual bool AlwaysParseForType(Manifest::Type type) const OVERRIDE;
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
app_launch_info.cc 26 bool ReadLaunchDimension(const extensions::Manifest* manifest,
32 if (manifest->Get(key, &temp)) {
119 if (extension->manifest()->Get(keys::kLaunchLocalPath, &temp)) {
120 if (extension->manifest()->Get(keys::kLaunchWebURL, NULL)) {
125 if (extension->manifest()->Get(keys::kWebURLs, NULL)) {
148 } else if (extension->manifest()->Get(keys::kLaunchWebURL, &temp)) {
230 if (!extension->manifest()->Get(keys::kLaunchContainer,
252 if (!ReadLaunchDimension(extension->manifest(),
261 if (!ReadLaunchDimension(extension->manifest(),
    [all...]

Completed in 469 milliseconds

<<21222324252627282930>>