| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "views/desktop/desktop_window_view.h" | 5 #include "ui/views/desktop/desktop_window_view.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "ui/gfx/canvas.h" | 8 #include "ui/gfx/canvas.h" |
| 9 #include "ui/gfx/compositor/layer.h" | 9 #include "ui/gfx/compositor/layer.h" |
| 10 #include "ui/gfx/compositor/layer_animator.h" | 10 #include "ui/gfx/compositor/layer_animator.h" |
| 11 #include "ui/gfx/transform.h" | 11 #include "ui/gfx/transform.h" |
| 12 #include "ui/views/desktop/desktop_background.h" |
| 13 #include "ui/views/desktop/desktop_window_manager.h" |
| 12 #include "ui/views/window/native_frame_view.h" | 14 #include "ui/views/window/native_frame_view.h" |
| 13 #include "views/desktop/desktop_background.h" | |
| 14 #include "views/desktop/desktop_window_manager.h" | |
| 15 #include "views/widget/native_widget_view.h" | 15 #include "views/widget/native_widget_view.h" |
| 16 #include "views/widget/native_widget_views.h" | 16 #include "views/widget/native_widget_views.h" |
| 17 #include "views/widget/widget.h" | 17 #include "views/widget/widget.h" |
| 18 | 18 |
| 19 #if defined(USE_AURA) | 19 #if defined(USE_AURA) |
| 20 #include "views/widget/native_widget_aura.h" | 20 #include "views/widget/native_widget_aura.h" |
| 21 #elif defined(OS_WIN) | 21 #elif defined(OS_WIN) |
| 22 #include "views/widget/native_widget_win.h" | 22 #include "views/widget/native_widget_win.h" |
| 23 #elif defined(USE_WAYLAND) | 23 #elif defined(USE_WAYLAND) |
| 24 #include "views/widget/native_widget_wayland.h" | 24 #include "views/widget/native_widget_wayland.h" |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 void DesktopWindowView::OnLayerAnimationScheduled( | 286 void DesktopWindowView::OnLayerAnimationScheduled( |
| 287 const ui::LayerAnimationSequence* animation) { | 287 const ui::LayerAnimationSequence* animation) { |
| 288 } | 288 } |
| 289 | 289 |
| 290 void DesktopWindowView::OnLayerAnimationAborted( | 290 void DesktopWindowView::OnLayerAnimationAborted( |
| 291 const ui::LayerAnimationSequence* animation) { | 291 const ui::LayerAnimationSequence* animation) { |
| 292 } | 292 } |
| 293 | 293 |
| 294 } // namespace desktop | 294 } // namespace desktop |
| 295 } // namespace views | 295 } // namespace views |
| OLD | NEW |