Home
last modified time | relevance | path

Searched refs:downloader (Results 1 – 25 of 30) sorted by relevance

12

/external/chromium_org/chrome/browser/profiles/
Dgaia_info_update_service_unittest.cc73 NiceMock<ProfileDownloaderMock> downloader(&service); in TEST_F() local
76 EXPECT_CALL(downloader, GetProfileFullName()).WillOnce(Return(name)); in TEST_F()
79 EXPECT_CALL(downloader, GetProfilePicture()).WillOnce(Return(*bmp)); in TEST_F()
80 EXPECT_CALL(downloader, GetProfilePictureStatus()). in TEST_F()
83 EXPECT_CALL(downloader, GetProfilePictureURL()).WillOnce(Return(url)); in TEST_F()
88 service.OnProfileDownloadSuccess(&downloader); in TEST_F()
109 NiceMock<ProfileDownloaderMock> downloader(&service); in TEST_F() local
111 service.OnProfileDownloadFailure(&downloader, in TEST_F()
133 NiceMock<ProfileDownloaderMock> downloader(&service); in TEST_F() local
135 EXPECT_CALL(downloader, GetProfileFullName()).WillOnce(Return(new_name)); in TEST_F()
[all …]
Dgaia_info_update_service.cc97 ProfileDownloader* downloader) { in OnProfileDownloadSuccess() argument
108 base::string16 full_name = downloader->GetProfileFullName(); in OnProfileDownloadSuccess()
109 base::string16 given_name = downloader->GetProfileGivenName(); in OnProfileDownloadSuccess()
110 SkBitmap bitmap = downloader->GetProfilePicture(); in OnProfileDownloadSuccess()
112 downloader->GetProfilePictureStatus(); in OnProfileDownloadSuccess()
113 std::string picture_url = downloader->GetProfilePictureURL(); in OnProfileDownloadSuccess()
154 ProfileDownloader* downloader, in OnProfileDownloadFailure() argument
Dprofile_downloader_delegate.h47 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) = 0;
51 ProfileDownloader* downloader,
Dgaia_info_update_service.h39 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
41 ProfileDownloader* downloader,
/external/chromium_org/chrome/browser/extensions/updater/
Dextension_updater_unittest.cc533 ExtensionDownloader* downloader) { in ResetDownloader() argument
535 updater->downloader_.reset(downloader); in ResetDownloader()
538 void StartUpdateCheck(ExtensionDownloader* downloader, in StartUpdateCheck() argument
540 downloader->StartUpdateCheck(scoped_ptr<ManifestFetchData>(fetch_data)); in StartUpdateCheck()
543 size_t ManifestFetchersCount(ExtensionDownloader* downloader) { in ManifestFetchersCount() argument
544 return downloader->manifests_queue_.size() + in ManifestFetchersCount()
545 (downloader->manifest_fetcher_.get() ? 1 : 0); in ManifestFetchersCount()
656 ExtensionDownloader downloader(&delegate, service.request_context()); in TestUpdateUrlDataFromGallery() local
665 downloader.AddExtension(*extensions[0].get(), 0); in TestUpdateUrlDataFromGallery()
666 downloader.StartAllPending(); in TestUpdateUrlDataFromGallery()
[all …]
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
Dretriever.cc40 const Downloader& downloader, in Helper() argument
44 downloader_(downloader), in Helper()
91 const Downloader* downloader, in Retriever() argument
94 downloader_(downloader), in Retriever()
Daddress_validator.cc31 AddressValidator::AddressValidator(const Downloader* downloader, in AddressValidator() argument
35 VALIDATION_DATA_URL, downloader, new ValidatingStorage(storage)))), in AddressValidator()
Dretriever.h48 const Downloader* downloader,
/external/chromium_org/chrome/browser/managed_mode/
Dcustodian_profile_downloader_service.cc65 ProfileDownloader* downloader) { in OnProfileDownloadSuccess() argument
66 download_callback_.Run(downloader->GetProfileFullName()); in OnProfileDownloadSuccess()
72 ProfileDownloader* downloader, in OnProfileDownloadFailure() argument
Dcustodian_profile_downloader_service.h38 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
40 ProfileDownloader* downloader,
/external/chromium_org/ui/base/dragdrop/
Dos_exchange_data.cc14 DownloadFileProvider* downloader) in DownloadFileInfo() argument
16 downloader(downloader) { in DownloadFileInfo()
Dos_exchange_data_provider_win.h100 scoped_refptr<DownloadFileProvider> downloader; member
110 if (downloader.get()) in ~StoredDataInfo()
111 downloader->Stop(); in ~StoredDataInfo()
Dos_exchange_data_provider_win.cc516 info->downloader = download.downloader; in SetDownloadFileInfo()
634 if ((*iter)->downloader.get()) { in StopDownloads()
635 (*iter)->downloader->Stop(); in StopDownloads()
636 (*iter)->downloader = 0; in StopDownloads()
716 if ((*iter)->downloader.get()) { in GetData()
717 (*iter)->downloader->Start(this); in GetData()
718 if (!(*iter)->downloader->Wait()) { in GetData()
Dos_exchange_data.h78 DownloadFileProvider* downloader);
82 scoped_refptr<DownloadFileProvider> downloader; member
/external/chromium_org/chrome/browser/chromeos/login/
Duser_image_manager_impl.cc769 ProfileDownloader* downloader) { in OnProfileDownloadSuccess() argument
773 DCHECK_EQ(downloader, profile_downloader.get()); in OnProfileDownloadSuccess()
780 UserManager::UserAccountData(downloader->GetProfileFullName(), in OnProfileDownloadSuccess()
781 downloader->GetProfileGivenName(), in OnProfileDownloadSuccess()
782 downloader->GetProfileLocale())); in OnProfileDownloadSuccess()
787 switch (downloader->GetProfilePictureStatus()) { in OnProfileDownloadSuccess()
828 downloader->GetProfilePicture()); in OnProfileDownloadSuccess()
829 profile_image_url_ = GURL(downloader->GetProfilePictureURL()); in OnProfileDownloadSuccess()
847 ProfileDownloader* downloader, in OnProfileDownloadFailure() argument
849 DCHECK_EQ(downloader, profile_downloader_.get()); in OnProfileDownloadFailure()
Duser_image_manager_impl.h102 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
104 ProfileDownloader* downloader,
/external/chromium_org/chrome/browser/component_updater/test/
Dcomponent_updater_ping_manager_unittest.cc143 download_metrics.downloader = CrxDownloader::DownloadMetrics::kUrlFetcher; in TEST_F()
152 download_metrics.downloader = CrxDownloader::DownloadMetrics::kBits; in TEST_F()
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
Dplugin.cc1263 FileDownloader* downloader = new FileDownloader(); in StreamAsFile() local
1264 downloader->Initialize(this); in StreamAsFile()
1265 url_downloaders_.insert(downloader); in StreamAsFile()
1279 if (OpenURLFast(url, downloader)) { in StreamAsFile()
1280 UrlDidOpenForStreamAsFile(PP_OK, downloader, callback); in StreamAsFile()
1285 &Plugin::UrlDidOpenForStreamAsFile, downloader, callback); in StreamAsFile()
1287 return downloader->Open(url, in StreamAsFile()
1486 FileDownloader* downloader) { in OpenURLFast() argument
1508 downloader->OpenFast(url, file_handle, file_token_lo, file_token_hi); in OpenURLFast()
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
Daddress_validator.h89 AddressValidator(const Downloader* downloader,
/external/chromium_org/chrome/browser/component_updater/
Dcrx_downloader.h47 Downloader downloader; member
Durl_fetcher_downloader.cc76 download_metrics.downloader = DownloadMetrics::kUrlFetcher; in OnURLFetchComplete()
Dcrx_downloader.cc20 : downloader(kNone), in DownloadMetrics()
Dcomponent_updater_ping_manager.cc108 " downloader=\"%s\"", DownloaderToString(metrics.downloader)); in BuildDownloadCompleteEventElements()
/external/mesa3d/src/gallium/state_trackers/d3d1x/docs/
Dsource_layout.txt7 mstools contains a downloader for the Microsoft HLSL compiler
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/docs/
Dsource_layout.txt7 mstools contains a downloader for the Microsoft HLSL compiler

12