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 #ifndef UI_VIEWS_DRAG_CONTROLLER_H_ | 5 #ifndef UI_VIEWS_DRAG_CONTROLLER_H_ |
6 #define UI_VIEWS_DRAG_CONTROLLER_H_ | 6 #define UI_VIEWS_DRAG_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "views/views_export.h" | 9 #include "ui/views/views_export.h" |
10 | 10 |
11 namespace gfx { | 11 namespace gfx { |
12 class Point; | 12 class Point; |
13 } | 13 } |
14 | 14 |
15 namespace ui { | 15 namespace ui { |
16 class OSExchangeData; | 16 class OSExchangeData; |
17 } | 17 } |
18 | 18 |
19 namespace views { | 19 namespace views { |
(...skipping 21 matching lines...) Expand all Loading... |
41 const gfx::Point& press_pt, | 41 const gfx::Point& press_pt, |
42 const gfx::Point& p) = 0; | 42 const gfx::Point& p) = 0; |
43 | 43 |
44 protected: | 44 protected: |
45 virtual ~DragController() {} | 45 virtual ~DragController() {} |
46 }; | 46 }; |
47 | 47 |
48 } // namespace views | 48 } // namespace views |
49 | 49 |
50 #endif // UI_VIEWS_DRAG_CONTROLLER_H_ | 50 #endif // UI_VIEWS_DRAG_CONTROLLER_H_ |
OLD | NEW |