| Index: ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| diff --git a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| index 56aa4baede0927ade9ec589b56c3608d2bb3deef..8472b6af740df6a505b4bffaa94231e6f8a43dd7 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| +++ b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| @@ -1011,8 +1011,8 @@ void DesktopNativeWidgetAura::OnCaptureLost() {
|
| native_widget_delegate_->OnMouseCaptureLost();
|
| }
|
|
|
| -void DesktopNativeWidgetAura::OnPaint(gfx::Canvas* canvas) {
|
| - native_widget_delegate_->OnNativeWidgetPaint(canvas);
|
| +void DesktopNativeWidgetAura::OnPaint(const ui::PaintContext& context) {
|
| + native_widget_delegate_->OnNativeWidgetPaint(context);
|
| }
|
|
|
| void DesktopNativeWidgetAura::OnDeviceScaleFactorChanged(
|
|
|