Lines Matching full:update
55 // Update AppID for extension blacklist.
59 // change this value, make sure to update comments where it is used.
62 // For sanity checking on update frequency - enforced in release mode only.
66 // Maximum length of an extension manifest update check url, since it is a GET
77 // The format for request parameters in update checks is:
89 // the number of days since the last time it was present in an update check.
95 // the full update url would be:
220 // Skip extensions with empty update URLs converted from user
227 // If the extension updates itself from the gallery, ignore any update URL
229 // communicate to the the gallery update servers.
295 // Skip extensions with non-empty invalid update URLs.
297 LOG(WARNING) << "Extension " << id << " has invalid update url "
312 // Fill in default update URL.
489 // In Release mode we enforce that update checks don't happen too often.
511 // avoiding a thundering herd against update servers.
687 LOG(WARNING) << "Error parsing update manifest:\n" << error_message;
752 const UpdateManifest::Result* update = &(results->list.at(updates[i]));
753 const std::string& id = update->extension_id;
756 NotifyUpdateFound(update->extension_id);
757 FetchUpdatedExtension(update->extension_id, update->crx_url,
758 update->package_hash, update->version);
804 // Tell ExtensionService to update prefs.
807 // Update the pref value for blacklist version
893 // If the user has overridden the update frequency, don't bother reporting
970 // Note: it is very important that we use the https version of the update
1026 const UpdateManifest::Result* update = &possible_updates.list[i];
1028 if (!fetch_data.Includes(update->extension_id))
1031 if (!pending_extension_manager->IsIdPending(update->extension_id)) {
1032 // If we're not installing pending extension, and the update
1036 if (!GetExistingVersion(update->extension_id, &version))
1042 Version::GetVersionFromString(update->version));
1050 // If the update specifies a browser minimum version, do we qualify?
1051 if (update->browser_min_version.length() > 0) {
1061 Version::GetVersionFromString(update->browser_min_version));
1066 LOG(WARNING) << "Updated version of extension " << update->extension_id
1068 << update->browser_min_version;