diff options
Diffstat (limited to 'ui/views/view.cc')
-rw-r--r-- | ui/views/view.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/views/view.cc b/ui/views/view.cc index 631deec..7da3a3b 100644 --- a/ui/views/view.cc +++ b/ui/views/view.cc @@ -1234,6 +1234,10 @@ void View::OnDeviceScaleFactorChanged(float device_scale_factor) { // Repainting with new scale factor will paint the content at the right scale. } +base::Closure View::PrepareForLayerBoundsChange() { + return base::Closure(); +} + void View::ReorderLayers() { View* v = this; while (v && !v->layer()) |