Searched refs:downloader (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
H A Daddress_validator.cc17 #include <libaddressinput/downloader.h>
31 AddressValidator::AddressValidator(const Downloader* downloader, argument
35 VALIDATION_DATA_URL, downloader, new ValidatingStorage(storage)))),
H A Dretriever.cc18 #include <libaddressinput/downloader.h>
40 const Downloader& downloader,
44 downloader_(downloader),
91 const Downloader* downloader,
94 downloader_(downloader),
37 Helper(const std::string& key, const Retriever::Callback& retrieved, const LookupKeyUtil& lookup_key_util, const Downloader& downloader, Storage* storage) argument
90 Retriever(const std::string& validation_data_url, const Downloader* downloader, Storage* storage) argument
H A Dretriever.h36 // Downloader* downloader = ...;
38 // downloader, storage);
46 // Takes ownership of |downloader| and |storage|.
48 const Downloader* downloader,
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_downloader_delegate.h46 // query the downloader for the picture and full name.
47 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) = 0;
51 ProfileDownloader* downloader,
H A Dgaia_info_update_service_unittest.cc73 NiceMock<ProfileDownloaderMock> downloader(&service);
76 EXPECT_CALL(downloader, GetProfileFullName()).WillOnce(Return(name));
79 EXPECT_CALL(downloader, GetProfilePicture()).WillOnce(Return(*bmp));
80 EXPECT_CALL(downloader, GetProfilePictureStatus()).
83 EXPECT_CALL(downloader, GetProfilePictureURL()).WillOnce(Return(url));
88 service.OnProfileDownloadSuccess(&downloader);
109 NiceMock<ProfileDownloaderMock> downloader(&service);
111 service.OnProfileDownloadFailure(&downloader,
133 NiceMock<ProfileDownloaderMock> downloader(&service);
135 EXPECT_CALL(downloader, GetProfileFullNam
[all...]
H A Dgaia_info_update_service.h39 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
41 ProfileDownloader* downloader,
H A Dgaia_info_update_service.cc97 ProfileDownloader* downloader) {
108 base::string16 full_name = downloader->GetProfileFullName();
109 base::string16 given_name = downloader->GetProfileGivenName();
110 SkBitmap bitmap = downloader->GetProfilePicture();
112 downloader->GetProfilePictureStatus();
113 std::string picture_url = downloader->GetProfilePictureURL();
154 ProfileDownloader* downloader,
96 OnProfileDownloadSuccess( ProfileDownloader* downloader) argument
153 OnProfileDownloadFailure( ProfileDownloader* downloader, ProfileDownloaderDelegate::FailureReason reason) argument
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/
H A Dfake_downloader.h15 // A fake downloader object to use in tests. Reads data from a file instead of
21 #include <libaddressinput/downloader.h>
H A Dretriever_test.cc18 #include <libaddressinput/downloader.h>
40 // Empty data that the downloader can return.
110 // The downloader that always fails.
/external/chromium_org/chrome/browser/managed_mode/
H A Dcustodian_profile_downloader_service.h38 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
40 ProfileDownloader* downloader,
H A Dcustodian_profile_downloader_service.cc65 ProfileDownloader* downloader) {
66 download_callback_.Run(downloader->GetProfileFullName());
72 ProfileDownloader* downloader,
64 OnProfileDownloadSuccess( ProfileDownloader* downloader) argument
71 OnProfileDownloadFailure( ProfileDownloader* downloader, ProfileDownloaderDelegate::FailureReason reason) argument
/external/chromium_org/chrome/browser/extensions/updater/
H A Dextension_updater_unittest.cc533 ExtensionDownloader* downloader) {
535 updater->downloader_.reset(downloader);
538 void StartUpdateCheck(ExtensionDownloader* downloader, argument
540 downloader->StartUpdateCheck(scoped_ptr<ManifestFetchData>(fetch_data));
543 size_t ManifestFetchersCount(ExtensionDownloader* downloader) { argument
544 return downloader->manifests_queue_.size() +
545 (downloader->manifest_fetcher_.get() ? 1 : 0);
656 ExtensionDownloader downloader(&delegate, service.request_context());
665 downloader.AddExtension(*extensions[0].get(), 0);
666 downloader
532 ResetDownloader(ExtensionUpdater* updater, ExtensionDownloader* downloader) argument
1488 ExtensionDownloader* downloader = local
1520 ExtensionDownloader* downloader = local
[all...]
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
H A Daddress_validator.h87 // Takes ownership of |downloader| and |storage|, which cannot be NULL. Does
89 AddressValidator(const Downloader* downloader,
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data.cc14 DownloadFileProvider* downloader)
16 downloader(downloader) {
12 DownloadFileInfo( const base::FilePath& filename, DownloadFileProvider* downloader) argument
H A Dos_exchange_data_provider_win.h100 scoped_refptr<DownloadFileProvider> downloader; member in struct:ui::DataObjectImpl::StoredDataInfo
110 if (downloader.get())
111 downloader->Stop();
H A Dos_exchange_data.h78 DownloadFileProvider* downloader);
82 scoped_refptr<DownloadFileProvider> downloader; member in struct:ui::OSExchangeData::DownloadFileInfo
H A Dos_exchange_data_provider_win.cc516 info->downloader = download.downloader;
634 if ((*iter)->downloader.get()) {
635 (*iter)->downloader->Stop();
636 (*iter)->downloader = 0;
716 if ((*iter)->downloader.get()) {
717 (*iter)->downloader->Start(this);
718 if (!(*iter)->downloader->Wait()) {
/external/chromium_org/chrome/browser/component_updater/
H A Dcrx_downloader.h32 // that, the download request is routed to the next downloader in the chain.
47 Downloader downloader; member in struct:component_updater::CrxDownloader::DownloadMetrics
77 // background downloader be used, if the platform supports it.
H A Durl_fetcher_downloader.cc76 download_metrics.downloader = DownloadMetrics::kUrlFetcher;
H A Dcrx_downloader.cc20 : downloader(kNone),
26 // On Windows, the first downloader in the chain is a background downloader,
94 // If the urls are mutated while this downloader is active, then the
115 // If this downloader has received a 5xx error for the current url,
131 // If there is another downloader that can accept this request, then hand
133 // of urls. Otherwise, the request ends here since the current downloader
134 // has tried all urls and it can't fall back on any other downloader.
H A Dcomponent_updater_ping_manager.cc19 // Returns a string literal corresponding to the value of the downloader |d|.
108 " downloader=\"%s\"", DownloaderToString(metrics.downloader));
/external/chromium_org/chrome/browser/chromeos/login/
H A Duser_image_manager_impl.h102 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
104 ProfileDownloader* downloader,
H A Duser_image_manager_impl.cc769 ProfileDownloader* downloader) {
773 DCHECK_EQ(downloader, profile_downloader.get());
780 UserManager::UserAccountData(downloader->GetProfileFullName(),
781 downloader->GetProfileGivenName(),
782 downloader->GetProfileLocale()));
787 switch (downloader->GetProfilePictureStatus()) {
828 downloader->GetProfilePicture());
829 profile_image_url_ = GURL(downloader->GetProfilePictureURL());
847 ProfileDownloader* downloader,
849 DCHECK_EQ(downloader, profile_downloader
768 OnProfileDownloadSuccess( ProfileDownloader* downloader) argument
846 OnProfileDownloadFailure( ProfileDownloader* downloader, ProfileDownloaderDelegate::FailureReason reason) argument
[all...]
/external/chromium_org/chrome/browser/component_updater/test/
H A Dcomponent_updater_ping_manager_unittest.cc143 download_metrics.downloader = CrxDownloader::DownloadMetrics::kUrlFetcher;
152 download_metrics.downloader = CrxDownloader::DownloadMetrics::kBits;
166 "<event eventtype=\"14\" eventresult=\"0\" downloader=\"direct\" "
169 "<event eventtype=\"14\" eventresult=\"1\" downloader=\"bits\" "
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dplugin.cc1263 FileDownloader* downloader = new FileDownloader(); local
1264 downloader->Initialize(this);
1265 url_downloaders_.insert(downloader);
1279 if (OpenURLFast(url, downloader)) {
1280 UrlDidOpenForStreamAsFile(PP_OK, downloader, callback);
1285 &Plugin::UrlDidOpenForStreamAsFile, downloader, callback);
1287 return downloader->Open(url,
1486 FileDownloader* downloader) {
1508 downloader->OpenFast(url, file_handle, file_token_lo, file_token_hi);
1485 OpenURLFast(const nacl::string& url, FileDownloader* downloader) argument

Completed in 479 milliseconds

12