HomeSort by relevance Sort by last modified time
    Searched full:updatecheck (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/chrome/common/extensions/
update_manifest.cc 138 // Get the updatecheck node.
140 "updatecheck");
142 *error_detail = "Too many updatecheck tags on app (expecting only 1).";
146 *error_detail = "Missing updatecheck on app.";
149 xmlNode *updatecheck = updates[0]; local
151 if (GetAttribute(updatecheck, "status") == "noupdate") {
156 result->crx_url = GURL(GetAttribute(updatecheck, "codebase"));
165 result->version = GetAttribute(updatecheck, "version");
167 *error_detail = "Missing version for updatecheck.";
179 result->browser_min_version = GetAttribute(updatecheck, "prodversionmin")
    [all...]
update_manifest_unittest.cc 14 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
23 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
33 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
42 " <updatecheck codebase='example.com/extension_1.2.3.4.crx'"
51 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx' />"
59 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx' "
68 " <g:updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
82 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
93 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
103 " <updatecheck status='noupdate' />
    [all...]
update_manifest.h 22 // <updatecheck codebase="http://example.com/extension_1.2.3.4.crx"
35 // extension. The "codebase" attribute of the <updatecheck> tag is the url to
  /external/chromium/chrome/common/extensions/
update_manifest.cc 136 // Get the updatecheck node.
138 "updatecheck");
140 *error_detail = "Too many updatecheck tags on app (expecting only 1).";
144 *error_detail = "Missing updatecheck on app.";
147 xmlNode *updatecheck = updates[0]; local
149 if (GetAttribute(updatecheck, "status") == "noupdate") {
154 result->crx_url = GURL(GetAttribute(updatecheck, "codebase"));
157 *error_detail += GetAttribute(updatecheck, "codebase");
163 result->version = GetAttribute(updatecheck, "version");
165 *error_detail = "Missing version for updatecheck."
    [all...]
update_manifest_unittest.cc 14 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
23 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
33 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
42 " <updatecheck codebase='example.com/extension_1.2.3.4.crx'"
51 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx' />"
59 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx' "
68 " <g:updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
82 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
93 " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
103 " <updatecheck status='noupdate' />
    [all...]
update_manifest.h 23 // <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'
33 // extension. The "codebase" attribute of the <updatecheck> tag is the url to
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicReferenceFieldUpdater.java 171 * updateCheck methods are invoked when these faster
247 void updateCheck(T obj, V update) {
259 updateCheck(obj, update);
268 updateCheck(obj, update);
276 updateCheck(obj, newValue);
284 updateCheck(obj, newValue);
  /external/chromium_org/chrome/browser/component_updater/
component_patcher.h 13 // updatecheck response:
14 // <updatecheck codebase="http://example.com/extension_1.2.3.4.crx"