diff options
Diffstat (limited to 'content/common/webkitplatformsupport_impl.cc')
-rw-r--r-- | content/common/webkitplatformsupport_impl.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/common/webkitplatformsupport_impl.cc b/content/common/webkitplatformsupport_impl.cc index 26c87bc..6309d9c 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. |