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 CHROME_VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ | 5 #ifndef CHROME_VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ |
6 #define CHROME_VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ | 6 #define CHROME_VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlmisc.h> | 10 #include <atlmisc.h> |
11 | 11 |
| 12 #include "app/os_exchange_data.h" |
12 #include "base/base_drop_target.h" | 13 #include "base/base_drop_target.h" |
13 #include "chrome/common/os_exchange_data.h" | |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 class Point; | 16 class Point; |
17 } | 17 } |
18 | 18 |
19 namespace views { | 19 namespace views { |
20 | 20 |
21 class RootView; | 21 class RootView; |
22 class View; | 22 class View; |
23 | 23 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 // The deepest view under the current drop coordinate. | 67 // The deepest view under the current drop coordinate. |
68 View* deepest_view_; | 68 View* deepest_view_; |
69 | 69 |
70 DISALLOW_EVIL_CONSTRUCTORS(RootViewDropTarget); | 70 DISALLOW_EVIL_CONSTRUCTORS(RootViewDropTarget); |
71 }; | 71 }; |
72 | 72 |
73 } // namespace views | 73 } // namespace views |
74 | 74 |
75 #endif // CHROME_VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ | 75 #endif // CHROME_VIEWS_WIDGET_ROOT_VIEW_DROP_TARGET_H_ |
OLD | NEW |