| Index: content/browser/android/in_process/synchronous_compositor_output_surface.cc
|
| diff --git a/content/browser/android/in_process/synchronous_compositor_output_surface.cc b/content/browser/android/in_process/synchronous_compositor_output_surface.cc
|
| index d5876e41a3ef8d7ab4a7002a001daff9553cd45a..dab1567bb5774f5173b6dc424eedcac1c4833fbc 100644
|
| --- a/content/browser/android/in_process/synchronous_compositor_output_surface.cc
|
| +++ b/content/browser/android/in_process/synchronous_compositor_output_surface.cc
|
| @@ -206,9 +206,9 @@ void SynchronousCompositorOutputSurface::InvokeComposite(
|
| gfx::Rect damage_area) {
|
| // TODO(boliu): This assumes |transform| is identity and |damage_area| is the
|
| // whole view. Tracking bug to implement this: crbug.com/230463.
|
| - client_->SetNeedsRedrawRect(damage_area);
|
| + SetNeedsRedrawRect(damage_area);
|
| if (needs_begin_frame_)
|
| - client_->BeginFrame(base::TimeTicks::Now());
|
| + BeginFrame(base::TimeTicks::Now());
|
| }
|
|
|
| // Not using base::NonThreadSafe as we want to enforce a more exacting threading
|
|
|