| Index: chrome/browser/ui/webui/favicon_source.cc
|
| diff --git a/chrome/browser/ui/webui/favicon_source.cc b/chrome/browser/ui/webui/favicon_source.cc
|
| index de4172b596b470006c41c79280e6347252dc533f..ef8f4bf53bcca02e733da8dc801faeefae31ad92 100644
|
| --- a/chrome/browser/ui/webui/favicon_source.cc
|
| +++ b/chrome/browser/ui/webui/favicon_source.cc
|
| @@ -47,12 +47,12 @@ void FaviconSource::StartDataRequest(const std::string& path,
|
| FaviconService* favicon_service =
|
| FaviconServiceFactory::GetForProfile(profile_, Profile::EXPLICIT_ACCESS);
|
| if (!favicon_service || path.empty()) {
|
| - SendDefaultResponse(IconRequest(request_id, 16, ui::SCALE_FACTOR_NONE));
|
| + SendDefaultResponse(IconRequest(request_id, 16, ui::SCALE_FACTOR_100P));
|
| return;
|
| }
|
|
|
| int size_in_dip = gfx::kFaviconSize;
|
| - ui::ScaleFactor scale_factor = ui::SCALE_FACTOR_NONE;
|
| + ui::ScaleFactor scale_factor = ui::SCALE_FACTOR_100P;
|
|
|
| FaviconService::Handle handle;
|
| if (path.size() > 8 &&
|
|
|