OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ | 5 #ifndef VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ |
6 #define VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ | 6 #define VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ |
7 | 7 |
8 #include <atlbase.h> | |
9 #include <atlapp.h> | |
10 #include <atlmisc.h> | |
11 | |
12 #include "app/os_exchange_data.h" | 8 #include "app/os_exchange_data.h" |
13 #include "base/base_drop_target.h" | 9 #include "base/base_drop_target.h" |
14 | 10 |
15 namespace gfx { | 11 namespace gfx { |
16 class Point; | 12 class Point; |
17 } | 13 } |
18 | 14 |
19 namespace views { | 15 namespace views { |
20 | 16 |
21 class RootView; | 17 class RootView; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 62 |
67 // The deepest view under the current drop coordinate. | 63 // The deepest view under the current drop coordinate. |
68 View* deepest_view_; | 64 View* deepest_view_; |
69 | 65 |
70 DISALLOW_EVIL_CONSTRUCTORS(RootViewDropTarget); | 66 DISALLOW_EVIL_CONSTRUCTORS(RootViewDropTarget); |
71 }; | 67 }; |
72 | 68 |
73 } // namespace views | 69 } // namespace views |
74 | 70 |
75 #endif // VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ | 71 #endif // VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ |
OLD | NEW |