| 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 8186da8b2289512dca0210c72cb4a04f6da38249..f4d82f78a93f9bbc18f47928057b655502a5925a 100644
|
| --- a/chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc
|
| +++ b/chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2.cc
|
| @@ -18,6 +18,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"
|
|
|
| @@ -82,7 +83,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));
|
| }
|
| }
|
|
|
|
|