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

1 2 3

  /external/chromium/chrome/browser/extensions/
extension_sync_data.h 31 GURL update_url; member in struct:ExtensionSyncData
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);
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.h 69 const GURL& update_url,
78 const GURL& update_url,
94 const GURL& update_url,
121 int count, const GURL& update_url,
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,
external_extension_provider_interface.h 36 const GURL& update_url,
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...]
external_policy_extension_loader_unittest.cc 73 const std::string& id, const GURL& update_url,
86 StringValue ext_str(id + ";" + update_url.spec());
  /external/chromium_org/chrome/browser/extensions/
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.cc 13 const GURL& update_url,
20 update_url_(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
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.h 41 const std::string& update_url);
external_policy_loader.cc 38 const std::string& update_url) {
41 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,
external_provider_interface.h 49 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());
  /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_org/chrome/common/extensions/
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_org/chrome/browser/extensions/updater/
manifest_fetch_data.cc 28 ManifestFetchData::ManifestFetchData(const GURL& update_url, int request_id)
29 : base_url_(update_url),
30 full_url_(update_url) {

Completed in 481 milliseconds

1 2 3