| Index: content/renderer/webplugin_delegate_proxy.cc
|
| diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc
|
| index b638a208ea93bfaf697e3516d21b67fcbf421844..2bb85b1985e876a500195a76c0b090176ad4c9c4 100644
|
| --- a/content/renderer/webplugin_delegate_proxy.cc
|
| +++ b/content/renderer/webplugin_delegate_proxy.cc
|
| @@ -751,6 +751,9 @@ void WebPluginDelegateProxy::Paint(WebKit::WebCanvas* canvas,
|
| bool WebPluginDelegateProxy::BackgroundChanged(
|
| gfx::NativeDrawingContext context,
|
| const gfx::Rect& rect) {
|
| +#if defined(OS_ANDROID)
|
| + NOTIMPLEMENTED();
|
| +#else
|
| #if defined(OS_WIN)
|
| HBITMAP hbitmap = static_cast<HBITMAP>(GetCurrentObject(context, OBJ_BITMAP));
|
| if (hbitmap == NULL) {
|
| @@ -890,6 +893,7 @@ bool WebPluginDelegateProxy::BackgroundChanged(
|
| return true;
|
| }
|
| #endif
|
| +#endif // OS_ANDROID
|
|
|
| return false;
|
| }
|
|
|