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

Side by Side Diff: views/widget/root_view.cc

Issue 6250014: Move more dnd related files to ui/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months 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/widget/drop_target_win.cc ('k') | views/widget/root_view_win.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/widget/root_view.h" 5 #include "views/widget/root_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "app/drag_drop_types.h"
10 #include "base/logging.h" 9 #include "base/logging.h"
11 #include "base/message_loop.h" 10 #include "base/message_loop.h"
12 #include "gfx/canvas_skia.h" 11 #include "gfx/canvas_skia.h"
12 #include "ui/base/dragdrop/drag_drop_types.h"
13 #include "ui/base/keycodes/keyboard_codes.h" 13 #include "ui/base/keycodes/keyboard_codes.h"
14 #include "views/fill_layout.h" 14 #include "views/fill_layout.h"
15 #include "views/focus/view_storage.h" 15 #include "views/focus/view_storage.h"
16 #include "views/widget/widget.h" 16 #include "views/widget/widget.h"
17 #include "views/window/window.h" 17 #include "views/window/window.h"
18 18
19 #if defined(TOUCH_UI) 19 #if defined(TOUCH_UI)
20 #include "views/touchui/gesture_manager.h" 20 #include "views/touchui/gesture_manager.h"
21 #endif 21 #endif
22 22
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 #elif defined(OS_LINUX) 796 #elif defined(OS_LINUX)
797 gfx::NativeView native_view = 797 gfx::NativeView native_view =
798 static_cast<WidgetGtk*>(GetWidget())->window_contents(); 798 static_cast<WidgetGtk*>(GetWidget())->window_contents();
799 if (!native_view) 799 if (!native_view)
800 return; 800 return;
801 gdk_window_set_cursor(native_view->window, cursor); 801 gdk_window_set_cursor(native_view->window, cursor);
802 #endif 802 #endif
803 } 803 }
804 804
805 } // namespace views 805 } // namespace views
OLDNEW
« no previous file with comments | « views/widget/drop_target_win.cc ('k') | views/widget/root_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698