| Index: chrome/common/chrome_content_client.cc
|
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc
|
| index 6116c0856c8dca7b3a91f3dea45b18b405616f26..4922be7cd278bd3c9e9ff5c0052f08252f7ca9e1 100644
|
| --- a/chrome/common/chrome_content_client.cc
|
| +++ b/chrome/common/chrome_content_client.cc
|
| @@ -26,6 +26,7 @@
|
| #include "remoting/client/plugin/pepper_entrypoints.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| +#include "ui/base/resource/resource_handle.h"
|
| #include "webkit/glue/user_agent.h"
|
| #include "webkit/plugins/npapi/plugin_list.h"
|
| #include "webkit/plugins/plugin_constants.h"
|
| @@ -416,7 +417,8 @@ string16 ChromeContentClient::GetLocalizedString(int message_id) const {
|
| }
|
|
|
| base::StringPiece ChromeContentClient::GetDataResource(int resource_id) const {
|
| - return ResourceBundle::GetSharedInstance().GetRawDataResource(resource_id);
|
| + return ResourceBundle::GetSharedInstance().GetRawDataResource(
|
| + resource_id, ui::ResourceHandle::kScaleFactorNone);
|
| }
|
|
|
| #if defined(OS_WIN)
|
|
|