diff options
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.cc')
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc index a2ffeb4..f4eddc4 100644 --- a/chrome/renderer/webplugin_delegate_proxy.cc +++ b/chrome/renderer/webplugin_delegate_proxy.cc @@ -602,12 +602,15 @@ bool WebPluginDelegateProxy::BackgroundChanged( return true; } return false; -#else - // Mac implementation note: |rect| is in content-area-relative coordinates, +#elif defined(OS_MACOSX) + // Needs implementation; see http://crbug.com/18193 + // Implementation note: |rect| is in content-area-relative coordinates, // but we may be given a context that is a subset of the content area // with a transform that makes the coordinates work out. We will likely // need to do fixup work like that done in BlitContextToContext when we // implement this. + return true; +#else NOTIMPLEMENTED(); return true; #endif |