| Index: content/common/webkitplatformsupport_impl.cc
|
| diff --git a/content/common/webkitplatformsupport_impl.cc b/content/common/webkitplatformsupport_impl.cc
|
| index 26c87bc95235300b92c01c32f2c3abc2bfee4db0..6309d9c171b1112fd4328139a781f00d0c13f899 100644
|
| --- a/content/common/webkitplatformsupport_impl.cc
|
| +++ b/content/common/webkitplatformsupport_impl.cc
|
| @@ -28,6 +28,13 @@ base::StringPiece WebKitPlatformSupportImpl::GetDataResource(
|
| return content::GetContentClient()->GetDataResource(resource_id);
|
| }
|
|
|
| +base::StringPiece WebKitPlatformSupportImpl::GetImageResource(
|
| + int resource_id,
|
| + float scale_factor) {
|
| + return content::GetContentClient()->GetImageResource(resource_id,
|
| + scale_factor);
|
| +}
|
| +
|
| void WebKitPlatformSupportImpl::GetPlugins(
|
| bool refresh, std::vector<webkit::WebPluginInfo>* plugins) {
|
| // This should not be called except in the renderer.
|
|
|