| Index: content/renderer/render_widget_fullscreen_pepper.cc
|
| diff --git a/content/renderer/render_widget_fullscreen_pepper.cc b/content/renderer/render_widget_fullscreen_pepper.cc
|
| index 8a22a420bf1001fb504e9e373a0f5050e32920f0..3c6511f62336e633ccfd17cd42e69ac3610a7a55 100644
|
| --- a/content/renderer/render_widget_fullscreen_pepper.cc
|
| +++ b/content/renderer/render_widget_fullscreen_pepper.cc
|
| @@ -407,11 +407,12 @@ RenderWidgetFullscreenPepper::GetBitmapForOptimizedPluginPaint(
|
| const gfx::Rect& paint_bounds,
|
| TransportDIB** dib,
|
| gfx::Rect* location,
|
| - gfx::Rect* clip) {
|
| - if (plugin_ &&
|
| - plugin_->GetBitmapForOptimizedPluginPaint(paint_bounds, dib,
|
| - location, clip))
|
| + gfx::Rect* clip,
|
| + float* scale_factor) {
|
| + if (plugin_ && plugin_->GetBitmapForOptimizedPluginPaint(
|
| + paint_bounds, dib, location, clip, scale_factor)) {
|
| return plugin_;
|
| + }
|
| return NULL;
|
| }
|
|
|
|
|