/external/chromium/chrome/browser/sync/glue/ |
D | extension_util.cc | 33 if (!extension.update_url().is_empty() && in IsExtensionValid() 34 (extension.update_url() != Extension::GalleryUpdateUrl(false)) && in IsExtensionValid() 35 (extension.update_url() != Extension::GalleryUpdateUrl(true))) { in IsExtensionValid() 56 ss << "update_url: " << specifics.update_url() << ", "; in ExtensionSpecificsToString() 77 GURL update_url(specifics.update_url()); in IsExtensionSpecificsValid() local 78 if (!update_url.is_empty() && !update_url.is_valid()) { in IsExtensionSpecificsValid() 97 (a.update_url() == b.update_url()) && in AreExtensionSpecificsEqual() 154 specifics->set_update_url(extension.update_url().spec()); in GetExtensionSpecifics() 199 GURL update_url(specifics.update_url()); in GetExtensionSyncData() local 200 if (!update_url.is_empty() && !update_url.is_valid()) { in GetExtensionSyncData() [all …]
|
D | extension_sync_traits.cc | 60 bool IsSyncableExtension(Extension::Type type, const GURL& update_url) { in IsSyncableExtension() argument 66 return !update_url.is_empty(); in IsSyncableExtension() 75 IsSyncableExtension(extension.GetType(), extension.update_url()); in IsValidAndSyncableExtension() 81 uninstalled_extension_info.update_url); in IsExtensionUninstall()
|
D | theme_util.cc | 94 GURL update_url(theme_specifics.custom_theme_update_url()); in SetCurrentThemeFromThemeSpecifics() local 95 VLOG(1) << "Applying theme " << id << " with update_url " << update_url; in SetCurrentThemeFromThemeSpecifics() 138 id, update_url, &IsTheme, in SetCurrentThemeFromThemeSpecifics() 198 current_theme->update_url().spec()); in GetThemeSpecificsFromCurrentThemeHelper()
|
D | extension_util_unittest.cc | 46 bool is_theme, const GURL& update_url, in MakeExtension() argument 58 if (!update_url.is_empty()) { in MakeExtension() 60 update_url.spec()); in MakeExtension() 286 EXPECT_EQ(kValidUpdateUrl1, dest_specifics.update_url()); in TEST_F() 312 EXPECT_EQ(kValidUpdateUrl2, dest_specifics.update_url()); in TEST_F() 415 EXPECT_EQ(extension->update_url().spec(), kValidUpdateUrl1); in TEST_F()
|
D | theme_util_unittest.cc | 30 const std::string& update_url) { in MakeThemeExtension() argument 34 source.SetString(extension_manifest_keys::kUpdateURL, update_url); in MakeThemeExtension()
|
/external/chromium/chrome/browser/extensions/ |
D | external_policy_extension_loader.cc | 21 bool CheckExtension(const std::string& id, const std::string& update_url) { in CheckExtension() argument 22 GURL url(update_url); in CheckExtension() 25 << "extension: " << update_url; in CheckExtension() 64 std::string update_url = extension_desc.substr(pos+1); in StartLoading() local 65 if (CheckExtension(id, update_url)) { in StartLoading() 66 result->SetString(id + ".external_update_url", update_url); in StartLoading()
|
D | pending_extension_manager.cc | 56 const GURL& update_url, in AddFromSync() argument 72 return AddExtensionImpl(id, update_url, should_allow_install, in AddFromSync() 80 const std::string& id, const GURL& update_url, in AddFromExternalUpdateUrl() argument 98 AddExtensionImpl(id, update_url, &AlwaysInstall, in AddFromExternalUpdateUrl() 148 const std::string& id, const GURL& update_url, in AddExtensionImpl() argument 184 update_url, in AddExtensionImpl()
|
D | 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,
|
D | extension_updater.cc | 70 ManifestFetchData::ManifestFetchData(const GURL& update_url) in ManifestFetchData() argument 71 : base_url_(update_url), in ManifestFetchData() 72 full_url_(update_url) { in ManifestFetchData() 223 extension.update_url().is_empty()) { in AddExtension() 238 extension.update_url(), update_url_data); in AddExtension() 252 Extension::TYPE_UNKNOWN, info.update_url(), ""); in AddPendingExtension() 289 GURL update_url, in AddExtensionData() argument 296 if (!update_url.is_empty() && !update_url.is_valid()) { in AddExtensionData() 298 << update_url; in AddExtensionData() 308 if (update_url.DomainIs("google.com")) { in AddExtensionData() [all …]
|
D | pending_extension_info.cc | 8 const GURL& update_url, in PendingExtensionInfo() argument 15 : update_url_(update_url), in PendingExtensionInfo()
|
D | pending_extension_info.h | 24 const GURL& update_url, 35 const GURL& update_url() const { return update_url_; } in update_url() function
|
D | extension_updater_unittest.cc | 154 const std::string* update_url, in CreateTestExtensions() argument 162 if (update_url) in CreateTestExtensions() 163 manifest.SetString(extension_manifest_keys::kUpdateURL, *update_url); in CreateTestExtensions() 202 const GURL& update_url, in SetupPendingExtensionManagerForTest() argument 215 PendingExtensionInfo(update_url, in SetupPendingExtensionManagerForTest() 375 std::string update_url("http://foo.com/bar"); in TestExtensionUpdateCheckRequests() local 380 SetupPendingExtensionManagerForTest(1, GURL(update_url), in TestExtensionUpdateCheckRequests() 383 service.CreateTestExtensions(1, 1, &extensions, &update_url, in TestExtensionUpdateCheckRequests() 538 const std::string& update_url = fetch->full_url().spec(); in TestUpdateUrlDataFromGallery() local 539 std::string::size_type x = update_url.find("x="); in TestUpdateUrlDataFromGallery() [all …]
|
D | external_extension_provider_impl.cc | 154 GURL update_url(external_update_url); in SetPrefs() local 155 if (!update_url.is_valid()) { in SetPrefs() 163 extension_id, update_url, download_location_); in SetPrefs()
|
D | external_policy_extension_loader_unittest.cc | 73 const std::string& id, const GURL& update_url, in OnExternalExtensionUpdateUrlFound() argument 86 StringValue ext_str(id + ";" + update_url.spec()); in OnExternalExtensionUpdateUrlFound()
|
D | extension_sync_data.h | 31 GURL update_url; member
|
D | external_extension_provider_interface.h | 36 const GURL& update_url,
|
D | extension_updater.h | 66 explicit ManifestFetchData(const GURL& update_url); 144 GURL update_url,
|
D | extension_service.cc | 293 const GURL& update_url, in OnExternalExtensionUpdateUrlFound() argument 303 id, update_url, location); in OnExternalExtensionUpdateUrlFound() 1287 extension_sync_data.update_url, in ProcessSyncData() 1729 << " and update URL " << extension->update_url().spec() in OnExtensionInstalled()
|
D | extension_service.h | 439 const GURL& update_url,
|
/external/chromium/chrome/browser/ |
D | plugin_observer.cc | 191 const GURL& update_url); 214 const GURL& update_url) in OutdatedPluginInfoBarDelegate() argument 216 update_url_(update_url) { in OutdatedPluginInfoBarDelegate() 363 const GURL& update_url) { in OnBlockedOutdatedPlugin() argument 364 tab_contents()->AddInfoBar(update_url.is_empty() ? in OnBlockedOutdatedPlugin() 367 new OutdatedPluginInfoBarDelegate(tab_contents(), name, update_url)); in OnBlockedOutdatedPlugin()
|
D | plugin_observer.h | 31 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url);
|
/external/chromium/chrome/browser/sync/protocol/ |
D | extension_specifics.proto | 32 optional string update_url = 3; field
|
D | proto_value_conversions.cc | 234 SET_STR(update_url); in ExtensionSpecificsToValue()
|
/external/chromium/chrome/common/extensions/ |
D | extension.h | 604 const GURL& update_url() const { return update_url_; } in update_url() function 961 GURL update_url; member
|
/external/chromium/chrome/browser/safe_browsing/ |
D | protocol_manager.cc | 614 GURL update_url = UpdateUrl(use_mac); in OnGetChunksComplete() local 615 request_.reset(new URLFetcher(update_url, URLFetcher::POST, this)); in OnGetChunksComplete()
|