HomeSort by relevance Sort by last modified time
    Searched refs:ProfileDownloader (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/browser/profiles/
profile_downloader_delegate.h 14 class ProfileDownloader;
47 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) = 0;
51 ProfileDownloader* downloader,
gaia_info_update_service.h 18 class ProfileDownloader;
39 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
41 ProfileDownloader* downloader,
51 scoped_ptr<ProfileDownloader> profile_image_downloader_;
profile_downloader.cc 134 bool ProfileDownloader::ParseProfileJSON(const std::string& data,
186 bool ProfileDownloader::IsDefaultProfileImageURL(const std::string& url) {
210 ProfileDownloader::ProfileDownloader(ProfileDownloaderDelegate* delegate)
216 void ProfileDownloader::Start() {
220 void ProfileDownloader::StartForAccount(const std::string& account_id) {
244 base::string16 ProfileDownloader::GetProfileFullName() const {
248 base::string16 ProfileDownloader::GetProfileGivenName() const {
252 std::string ProfileDownloader::GetProfileLocale() const {
256 SkBitmap ProfileDownloader::GetProfilePicture() const
    [all...]
profile_downloader_unittest.cc 61 bool result = ProfileDownloader::ParseProfileJSON(
159 EXPECT_TRUE(ProfileDownloader::IsDefaultProfileImageURL(std::string()));
161 EXPECT_TRUE(ProfileDownloader::IsDefaultProfileImageURL(
164 EXPECT_FALSE(ProfileDownloader::IsDefaultProfileImageURL(
167 EXPECT_FALSE(ProfileDownloader::IsDefaultProfileImageURL(
170 EXPECT_FALSE(ProfileDownloader::IsDefaultProfileImageURL(
profile_downloader.h 29 class ProfileDownloader : public net::URLFetcherDelegate,
41 explicit ProfileDownloader(ProfileDownloaderDelegate* delegate);
42 virtual ~ProfileDownloader();
136 DISALLOW_COPY_AND_ASSIGN(ProfileDownloader);
gaia_info_update_service.cc 56 profile_image_downloader_.reset(new ProfileDownloader(this));
97 ProfileDownloader* downloader) {
98 // Make sure that |ProfileDownloader| gets deleted after return.
99 scoped_ptr<ProfileDownloader> profile_image_downloader(
111 ProfileDownloader::PictureStatus picture_status =
128 if (picture_status == ProfileDownloader::PICTURE_SUCCESS) {
133 } else if (picture_status == ProfileDownloader::PICTURE_DEFAULT) {
154 ProfileDownloader* downloader,
gaia_info_update_service_unittest.cc 26 class ProfileDownloaderMock : public ProfileDownloader {
29 : ProfileDownloader(delegate) {
38 ProfileDownloader::PictureStatus());
81 WillOnce(Return(ProfileDownloader::PICTURE_SUCCESS));
140 WillOnce(Return(ProfileDownloader::PICTURE_SUCCESS));
  /external/chromium_org/chrome/browser/managed_mode/
custodian_profile_downloader_service.h 38 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
40 ProfileDownloader* downloader,
49 scoped_ptr<ProfileDownloader> profile_downloader_;
custodian_profile_downloader_service.cc 43 profile_downloader_.reset(new ProfileDownloader(this));
65 ProfileDownloader* downloader) {
72 ProfileDownloader* downloader,
  /external/chromium_org/chrome/browser/chromeos/login/
user_image_manager_impl.h 28 class ProfileDownloader;
102 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
104 ProfileDownloader* downloader,
180 scoped_ptr<ProfileDownloader> profile_downloader_;
user_image_manager_impl.cc 769 ProfileDownloader* downloader) {
771 scoped_ptr<ProfileDownloader> profile_downloader(
788 case ProfileDownloader::PICTURE_SUCCESS:
791 case ProfileDownloader::PICTURE_CACHED:
794 case ProfileDownloader::PICTURE_DEFAULT:
847 ProfileDownloader* downloader,
    [all...]
user_image_manager_browsertest.cc 220 // ProfileDownloader to download the profile image.
223 ProfileDownloader* profile_downloader =
249 // net::TestURLFetcher created by the ProfileDownloader to download the
    [all...]

Completed in 2248 milliseconds