| Index: chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc
|
| diff --git a/chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc b/chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc
|
| index bc38e2da184353c2c6ab66441335f8aafef6709c..73f7e3f97a0a6554fea83d6e4a440b569cad2ace 100644
|
| --- a/chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc
|
| +++ b/chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc
|
| @@ -19,6 +19,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "grit/ui_resources.h"
|
| #include "net/base/mime_util.h"
|
| +#include "ui/base/layout.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/codec/png_codec.h"
|
|
|
| @@ -107,7 +108,8 @@ void WallpaperThumbnailSource::StartDataRequest(const std::string& path,
|
| if (idr != -1) {
|
| DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
|
| const ResourceBundle& rb = ResourceBundle::GetSharedInstance();
|
| - SendResponse(request_id, rb.LoadDataResourceBytes(idr));
|
| + SendResponse(request_id, rb.LoadDataResourceBytes(idr,
|
| + ui::SCALE_FACTOR_100P));
|
| }
|
| }
|
|
|
|
|