| Index: content/renderer/render_widget.h
|
| diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h
|
| index a9abafda6a68ceff4a11dd9b279c3035b7a2e4c7..84da923e688c7384195aa435510cdea6d62856b9 100644
|
| --- a/content/renderer/render_widget.h
|
| +++ b/content/renderer/render_widget.h
|
| @@ -132,8 +132,8 @@ class CONTENT_EXPORT RenderWidget
|
| virtual void didBecomeReadyForAdditionalInput();
|
| virtual void didCommitAndDrawCompositorFrame();
|
| virtual void didCompleteSwapBuffers();
|
| - virtual void scheduleComposite();
|
| - virtual void scheduleAnimation();
|
| + virtual void scheduleAnimation(); // Renamed. Staged for removal.
|
| + virtual void scheduleUpdate();
|
| virtual void didFocus();
|
| virtual void didBlur();
|
| virtual void didChangeCursor(const blink::WebCursorInfo&);
|
| @@ -225,6 +225,8 @@ class CONTENT_EXPORT RenderWidget
|
| void DisableScreenMetricsEmulation();
|
| void SetPopupOriginAdjustmentsForEmulation(ScreenMetricsEmulator* emulator);
|
|
|
| + void ScheduleAnimation();
|
| + void ScheduleComposite();
|
| void ScheduleCompositeWithForcedRedraw();
|
|
|
| // Called by the compositor in single-threaded mode when a swap is posted,
|
|
|