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

1 2 3 4

  /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/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);
  /external/chromium_org/chrome/browser/extensions/
extension_sync_data_unittest.cc 55 EXPECT_EQ(extension_specifics->update_url(),
56 extension_sync_data.update_url().spec());
81 EXPECT_EQ(extension_sync_data.update_url().spec(),
82 output_specifics.update_url());
external_policy_loader.cc 38 const std::string& update_url) {
41 update_url);
pending_extension_info.cc 13 const GURL& update_url,
20 update_url_(update_url),
pending_extension_manager.cc 96 const GURL& update_url,
118 return AddExtensionImpl(id, update_url, Version(), should_allow_install,
124 const GURL& update_url,
138 return AddExtensionImpl(id, update_url, Version(), should_allow_install,
144 const GURL& update_url,
168 return AddExtensionImpl(id, update_url, Version(), &AlwaysInstall,
217 const GURL& update_url,
226 update_url,
pending_extension_manager.h 29 int count, const GURL& update_url,
79 const GURL& update_url,
86 const GURL& update_url,
92 const GURL& update_url,
116 const GURL& update_url,
140 int count, const GURL& update_url,
pending_extension_info.h 31 const GURL& update_url,
45 const GURL& update_url() const { return update_url_; } function in class:extensions::PendingExtensionInfo
external_policy_loader.h 41 const std::string& update_url);
  /external/chromium/chrome/browser/
plugin_observer.h 31 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url);
  /external/chromium_org/chrome/common/extensions/
sync_type_unittest.cc 31 const GURL& update_url,
46 if (!update_url.is_empty()) {
47 source.SetString(keys::kUpdateURL, update_url.spec());
83 const GURL& update_url,
89 type, update_url, launch_url, location, extension_path,
154 USER_SCRIPT, GURL("http://third-party.update_url.com"), GURL(),
extension_constants.cc 68 bool IsWebstoreUpdateUrl(const GURL& update_url) {
70 if (update_url == store_url) {
73 return (update_url.host() == store_url.host() &&
74 update_url.path() == store_url.path());
  /external/chromium_org/chrome/browser/chromeos/extensions/
external_cache.cc 278 std::string update_url; local
282 &update_url)) {
290 if (extension_urls::IsWebstoreUpdateUrl(GURL(update_url))) {
350 GURL update_url; local
354 update_url = GURL(external_update_url);
356 update_url = extension_urls::GetWebstoreUpdateUrl();
358 if (update_url.is_valid())
359 downloader_->AddPendingExtension(it.key(), update_url, 0);
449 std::string update_url; local
451 &update_url) &
    [all...]
  /external/chromium/chrome/browser/sync/protocol/
extension_specifics.proto 32 optional string update_url = 3;
  /external/chromium_org/sync/protocol/
extension_specifics.proto 30 optional string update_url = 3;
  /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>
  /external/chromium_org/chrome/browser/extensions/updater/
extension_downloader.cc 210 const GURL& update_url,
221 update_url,
265 GURL update_url(extension_update_url);
267 if (!update_url.is_empty() && !update_url.is_valid()) {
269 << update_url; local
274 if (extension_urls::IsWebstoreUpdateUrl(update_url) &&
275 !update_url.SchemeIsSecure())
276 update_url = extension_urls::GetWebstoreUpdateUrl();
284 if (update_url.DomainIs("google.com"))
    [all...]

Completed in 823 milliseconds

1 2 3 4