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

1 2

  /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_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_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...]
extension_updater.h 66 explicit ManifestFetchData(const GURL& update_url);
144 GURL update_url,
extension_service.h 439 const GURL& update_url,
extension_service.cc 293 const GURL& update_url,
303 id, update_url, location);
    [all...]
  /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/
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/safe_browsing/
protocol_manager.cc 614 GURL update_url = UpdateUrl(use_mac); local
615 request_.reset(new URLFetcher(update_url, URLFetcher::POST, this));
  /external/chromium/chrome/common/extensions/
extension.h 604 const GURL& update_url() const { return update_url_; } function in class:Extension
961 GURL update_url; member in struct:UninstalledExtensionInfo
    [all...]
extension.cc     [all...]
  /external/chromium/chrome/browser/sync/protocol/
proto_value_conversions.cc 234 SET_STR(update_url);

Completed in 201 milliseconds

1 2