| Index: ui/aura/window.cc
|
| diff --git a/ui/aura/window.cc b/ui/aura/window.cc
|
| index 714c9f0229731d40794e89b3affb0f7c99786b30..efaf79eb843a30c476fa830c4fd958c179eebe53 100644
|
| --- a/ui/aura/window.cc
|
| +++ b/ui/aura/window.cc
|
| @@ -999,6 +999,10 @@ cc::SurfaceId Window::GetSurfaceId() const {
|
| return port_->GetSurfaceId();
|
| }
|
|
|
| +void Window::SetNeedsBeginFrames(bool needs, base::RepeatingClosure callback) {
|
| + port_->SetNeedsBeginFrames(needs, std::move(callback));
|
| +}
|
| +
|
| void Window::OnPaintLayer(const ui::PaintContext& context) {
|
| Paint(context);
|
| }
|
|
|