OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/profiles/profile_avatar_downloader.h" | 5 #include "chrome/browser/profiles/profile_avatar_downloader.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/profiles/profile_avatar_icon_util.h" | 10 #include "chrome/browser/profiles/profile_avatar_icon_util.h" |
11 #include "chrome/browser/profiles/profile_info_cache.h" | 11 #include "chrome/browser/profiles/profile_info_cache.h" |
12 #include "net/base/load_flags.h" | 12 #include "net/base/load_flags.h" |
13 | 13 |
14 namespace { | 14 namespace { |
15 const char kHighResAvatarDownloadUrlPrefix[] = | 15 const char kHighResAvatarDownloadUrlPrefix[] = |
16 "http://www.gstatic.com/chrome/profile_avatars/"; | 16 "http://www.gstatic.com/chrome/profile_avatars/"; |
17 } | 17 } |
18 | 18 |
19 ProfileAvatarDownloader::ProfileAvatarDownloader( | 19 ProfileAvatarDownloader::ProfileAvatarDownloader( |
20 size_t icon_index, | 20 size_t icon_index, |
21 const base::FilePath& profile_path, | 21 const base::FilePath& profile_path, |
22 ProfileInfoCache* cache) | 22 ProfileInfoCache* cache) |
23 : icon_index_(icon_index), | 23 : icon_index_(icon_index), |
24 profile_path_(profile_path), | 24 profile_path_(profile_path), |
25 // The downloader should only execute on desktop platforms. | |
26 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) && !defined(OS_IOS) | |
27 downloader_active_(true), | |
noms (inactive)
2015/03/31 20:51:26
What do you think about combining this with disabl
Mike Lerman
2015/04/01 13:59:51
We actually don't need this at all anymore, and ca
| |
28 #else | |
29 downloader_active_(false), | |
30 #endif | |
25 cache_(cache) { | 31 cache_(cache) { |
26 GURL url(std::string(kHighResAvatarDownloadUrlPrefix) + | 32 GURL url(std::string(kHighResAvatarDownloadUrlPrefix) + |
27 profiles::GetDefaultAvatarIconFileNameAtIndex(icon_index)); | 33 profiles::GetDefaultAvatarIconFileNameAtIndex(icon_index)); |
28 fetcher_.reset(new chrome::BitmapFetcher(url, this)); | 34 fetcher_.reset(new chrome::BitmapFetcher(url, this)); |
29 } | 35 } |
30 | 36 |
31 ProfileAvatarDownloader::~ProfileAvatarDownloader() { | 37 ProfileAvatarDownloader::~ProfileAvatarDownloader() { |
32 } | 38 } |
33 | 39 |
34 void ProfileAvatarDownloader::Start() { | 40 void ProfileAvatarDownloader::Start() { |
41 if (!downloader_active_) | |
42 return; | |
43 | |
35 // In unit tests, the browser process can return a NULL request context. | 44 // In unit tests, the browser process can return a NULL request context. |
36 net::URLRequestContextGetter* request_context = | 45 net::URLRequestContextGetter* request_context = |
37 g_browser_process->system_request_context(); | 46 g_browser_process->system_request_context(); |
38 if (request_context) | 47 if (request_context) |
39 fetcher_->Start( | 48 fetcher_->Start( |
40 request_context, | 49 request_context, |
41 std::string(), | 50 std::string(), |
42 net::URLRequest::CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE, | 51 net::URLRequest::CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE, |
43 net::LOAD_NORMAL); | 52 net::LOAD_NORMAL); |
44 } | 53 } |
45 | 54 |
46 // BitmapFetcherDelegate overrides. | 55 // BitmapFetcherDelegate overrides. |
47 void ProfileAvatarDownloader::OnFetchComplete(const GURL url, | 56 void ProfileAvatarDownloader::OnFetchComplete(const GURL url, |
48 const SkBitmap* bitmap) { | 57 const SkBitmap* bitmap) { |
49 if (!bitmap || !cache_) | 58 if (!bitmap || !cache_ || !downloader_active_) |
50 return; | 59 return; |
51 | 60 |
52 // Decode the downloaded bitmap. Ownership of the image is taken by |cache_|. | 61 // Decode the downloaded bitmap. Ownership of the image is taken by |cache_|. |
53 gfx::Image image = gfx::Image::CreateFrom1xBitmap(*bitmap); | 62 gfx::Image image = gfx::Image::CreateFrom1xBitmap(*bitmap); |
54 cache_->SaveAvatarImageAtPath(&image, | 63 cache_->SaveAvatarImageAtPath(&image, |
55 profiles::GetDefaultAvatarIconFileNameAtIndex(icon_index_), | 64 profiles::GetDefaultAvatarIconFileNameAtIndex(icon_index_), |
56 profiles::GetPathOfHighResAvatarAtIndex(icon_index_), | 65 profiles::GetPathOfHighResAvatarAtIndex(icon_index_), |
57 profile_path_); | 66 profile_path_); |
58 } | 67 } |
OLD | NEW |