| Index: content/browser/renderer_host/render_widget_host_view_aura.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.h b/content/browser/renderer_host/render_widget_host_view_aura.h
|
| index c7987dcd6fe78c5f380f0f3b85834af6d51452d2..70a2dd02d6843c1231660b88df6577602aafd45f 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.h
|
| @@ -453,10 +453,12 @@ class RenderWidgetHostViewAura
|
| // The common entry point for full buffer updates from renderer
|
| // and GPU process.
|
| void BuffersSwapped(const gfx::Size& size,
|
| + float surface_scale_factor,
|
| const std::string& mailbox_name,
|
| const BufferPresentedCallback& ack_callback);
|
|
|
| bool SwapBuffersPrepare(const gfx::Rect& surface_rect,
|
| + float surface_scale_factor,
|
| const gfx::Rect& damage_rect,
|
| const std::string& mailbox_name,
|
| const BufferPresentedCallback& ack_callback);
|
| @@ -568,6 +570,7 @@ class RenderWidgetHostViewAura
|
| // Used to determine when the skipped_damage_ needs to be reset due to
|
| // size changes between front- and backbuffer.
|
| gfx::Size last_swapped_surface_size_;
|
| + float last_swapped_surface_scale_factor_;
|
|
|
| int pending_thumbnail_tasks_;
|
|
|
|
|