Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: views/desktop/desktop_window_view.cc

Issue 8497067: views: Remove the old views/window/ directory and its stubbed files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/desktop/desktop_window_manager.cc ('k') | views/focus/focus_manager_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "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/transform.h"
10 #include "ui/gfx/compositor/layer.h" 9 #include "ui/gfx/compositor/layer.h"
11 #include "ui/gfx/compositor/layer_animator.h" 10 #include "ui/gfx/compositor/layer_animator.h"
11 #include "ui/gfx/transform.h"
12 #include "ui/views/window/native_frame_view.h"
12 #include "views/desktop/desktop_background.h" 13 #include "views/desktop/desktop_background.h"
13 #include "views/desktop/desktop_window_manager.h" 14 #include "views/desktop/desktop_window_manager.h"
14 #include "views/widget/native_widget_view.h" 15 #include "views/widget/native_widget_view.h"
15 #include "views/widget/native_widget_views.h" 16 #include "views/widget/native_widget_views.h"
16 #include "views/widget/widget.h" 17 #include "views/widget/widget.h"
17 #include "views/window/native_frame_view.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"
25 #elif defined(TOOLKIT_USES_GTK) 25 #elif defined(TOOLKIT_USES_GTK)
26 #include "views/widget/native_widget_gtk.h" 26 #include "views/widget/native_widget_gtk.h"
27 #endif 27 #endif
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « views/desktop/desktop_window_manager.cc ('k') | views/focus/focus_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698