HomeSort by relevance Sort by last modified time
    Searched full:update_url (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium/chrome/browser/sync/glue/
extension_util.cc 33 if (!extension.update_url().is_empty() &&
34 (extension.update_url() != Extension::GalleryUpdateUrl(false)) &&
35 (extension.update_url() != Extension::GalleryUpdateUrl(true))) {
56 ss << "update_url: " << specifics.update_url() << ", ";
77 GURL update_url(specifics.update_url());
78 if (!update_url.is_empty() && !update_url.is_valid()) {
97 (a.update_url() == b.update_url()) &
    [all...]
extension_sync_traits.cc 60 bool IsSyncableExtension(Extension::Type type, const GURL& update_url) {
66 return !update_url.is_empty();
75 IsSyncableExtension(extension.GetType(), extension.update_url());
81 uninstalled_extension_info.update_url);
theme_util.cc 94 GURL update_url(theme_specifics.custom_theme_update_url());
95 VLOG(1) << "Applying theme " << id << " with update_url " << update_url; local
138 id, update_url, &IsTheme,
198 current_theme->update_url().spec());
extension_util_unittest.cc 46 bool is_theme, const GURL& update_url,
58 if (!update_url.is_empty()) {
60 update_url.spec());
134 false, GURL("http://third-party.update_url.com"), GURL(), true,
286 EXPECT_EQ(kValidUpdateUrl1, dest_specifics.update_url());
312 EXPECT_EQ(kValidUpdateUrl2, dest_specifics.update_url());
415 EXPECT_EQ(extension->update_url().spec(), kValidUpdateUrl1);
theme_util_unittest.cc 30 const std::string& update_url) {
34 source.SetString(extension_manifest_keys::kUpdateURL, update_url);
  /external/chromium/chrome/browser/extensions/
pending_extension_info.cc 8 const GURL& update_url,
15 : update_url_(update_url),
external_policy_extension_loader.cc 21 bool CheckExtension(const std::string& id, const std::string& update_url) {
22 GURL url(update_url);
25 << "extension: " << update_url;
64 std::string update_url = extension_desc.substr(pos+1); local
65 if (CheckExtension(id, update_url)) {
66 result->SetString(id + ".external_update_url", update_url);
extension_sync_data.h 31 GURL update_url; member in struct:ExtensionSyncData
pending_extension_info.h 24 const GURL& update_url,
35 const GURL& update_url() const { return update_url_; } function in class:PendingExtensionInfo
pending_extension_manager.cc 56 const GURL& update_url,
72 return AddExtensionImpl(id, update_url, should_allow_install,
80 const std::string& id, const GURL& update_url,
98 AddExtensionImpl(id, update_url, &AlwaysInstall,
148 const std::string& id, const GURL& update_url,
184 update_url,
pending_extension_manager.h 69 const GURL& update_url,
78 const GURL& update_url,
94 const GURL& update_url,
121 int count, const GURL& update_url,
external_policy_extension_loader_unittest.cc 73 const std::string& id, const GURL& update_url,
86 StringValue ext_str(id + ";" + update_url.spec());
external_extension_provider_impl.cc 154 GURL update_url(external_update_url);
155 if (!update_url.is_valid()) {
163 extension_id, update_url, download_location_);
extension_updater.cc 70 ManifestFetchData::ManifestFetchData(const GURL& update_url)
71 : base_url_(update_url),
72 full_url_(update_url) {
223 extension.update_url().is_empty()) {
238 extension.update_url(), update_url_data);
252 Extension::TYPE_UNKNOWN, info.update_url(), "");
289 GURL update_url,
296 if (!update_url.is_empty() && !update_url.is_valid()) {
298 << update_url; local
    [all...]
extension_updater_unittest.cc 149 // version are all based on their index. If |update_url| is non-null, it
150 // will be used as the update_url for each extension.
154 const std::string* update_url,
162 if (update_url)
163 manifest.SetString(extension_manifest_keys::kUpdateURL, *update_url);
202 const GURL& update_url,
215 PendingExtensionInfo(update_url,
373 // Create an extension with an update_url.
375 std::string update_url("http://foo.com/bar");
380 SetupPendingExtensionManagerForTest(1, GURL(update_url),
538 const std::string& update_url = fetch->full_url().spec(); local
    [all...]
external_extension_provider_interface.h 36 const GURL& update_url,
extension_updater.h 66 explicit ManifestFetchData(const GURL& update_url);
144 GURL update_url,
  /external/chromium/chrome/browser/
plugin_observer.h 31 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url);
plugin_observer.cc 191 const GURL& update_url);
214 const GURL& update_url)
216 update_url_(update_url) {
363 const GURL& update_url) {
364 tab_contents()->AddInfoBar(update_url.is_empty() ?
367 new OutdatedPluginInfoBarDelegate(tab_contents(), name, update_url));
  /external/chromium/chrome/browser/sync/protocol/
extension_specifics.proto 32 optional string update_url = 3;
proto_value_conversions.cc 234 SET_STR(update_url);
  /external/chromium/chrome/common/extensions/docs/static/
autoupdate.html 14 <ul><li>An extension manifest may contain an "update_url" for doing update checks.</li>
21 <p>For those who are hosting their own extensions, you need to add the "update_url" key to your <a href="manifest.html">manifest.json</a> file like this:</p>
26 <b>"update_url": "http://myhost.com/mytestextension/updates.xml"</b>,
72 <p>More advanced developers may wish to take advantage of the fact that we add on parameters to the request for the update manifest to indicate the extension id and version. Then they can use the same update_url for all of their extensions pointing to a URL running dynamic server side code instead of a static XML file.</p>
82 <p>and that both point at the same update_url: <code>http://test.com/extension_updates.php</code></p>
92 <p>While not implemented yet, we will eventually list multiple extensions in a single request for each unique update_url. For the above example, the request would end up being:</p>
95 <p>If the number of installed extensions using the same update_url is large enough that a GET request URL would be too long (probably greater than 1024 characters or so), the update check will instead issue a POST with the request parameters in the POST body.</p>
permission_warnings.html 350 using the "update_url" key
  /external/chromium/chrome/common/extensions/docs/
autoupdate.html 363 <ul><li>An extension manifest may contain an "update_url" for doing update checks.</li>
370 <p>For those who are hosting their own extensions, you need to add the "update_url" key to your <a href="manifest.html">manifest.json</a> file like this:</p>
375 <b>"update_url": "http://myhost.com/mytestextension/updates.xml"</b>,
419 <p>More advanced developers may wish to take advantage of the fact that we add on parameters to the request for the update manifest to indicate the extension id and version. Then they can use the same update_url for all of their extensions pointing to a URL running dynamic server side code instead of a static XML file.</p>
429 <p>and that both point at the same update_url: <code>http://test.com/extension_updates.php</code></p>
439 <p>While not implemented yet, we will eventually list multiple extensions in a single request for each unique update_url. For the above example, the request would end up being:</p>
442 <p>If the number of installed extensions using the same update_url is large enough that a GET request URL would be too long (probably greater than 1024 characters or so), the update check will instead issue a POST with the request parameters in the POST body.</p>
  /external/chromium/chrome/browser/resources/
plugins.html 259 'update_url': 'http://update/',
530 <a jsdisplay="critical" jsvalues=".href:update_url"

Completed in 1125 milliseconds

1 2