mirror of
https://github.com/morgan9e/helium
synced 2026-04-14 00:14:20 +09:00
now all chromium patches in all helium repos follow the same dir pattern: `<vendor>/<group>/<...>/<patch>` and there's no longer a "contrib" dir which was admittedly kind of confusing
15 lines
724 B
C++
15 lines
724 B
C++
# Stop downloading of profile avatar (trk:271:...)
|
|
|
|
--- a/chrome/browser/profiles/profile_avatar_downloader.cc
|
|
+++ b/chrome/browser/profiles/profile_avatar_downloader.cc
|
|
@@ -27,8 +27,7 @@ ProfileAvatarDownloader::ProfileAvatarDo
|
|
FetchCompleteCallback callback)
|
|
: icon_index_(icon_index), callback_(std::move(callback)) {
|
|
DCHECK(!callback_.is_null());
|
|
- GURL url(std::string(kHighResAvatarDownloadUrlPrefix) +
|
|
- profiles::GetDefaultAvatarIconFileNameAtIndex(icon_index));
|
|
+ GURL url(std::string("about:blank"));
|
|
net::NetworkTrafficAnnotationTag traffic_annotation =
|
|
net::DefineNetworkTrafficAnnotation("profile_avatar", R"(
|
|
semantics {
|