| 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_BROWSER_DRAG_UTILS_H__ | 5 #ifndef VIEWS_DRAG_UTILS_H_ |
| 6 #define CHROME_BROWSER_DRAG_UTILS_H__ | 6 #define VIEWS_DRAG_UTILS_H_ |
| 7 | 7 |
| 8 #include <objidl.h> | 8 #include <objidl.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 class ChromeCanvas; | 11 class ChromeCanvas; |
| 12 class GURL; | 12 class GURL; |
| 13 class OSExchangeData; | 13 class OSExchangeData; |
| 14 class SkBitmap; | 14 class SkBitmap; |
| 15 | 15 |
| 16 namespace drag_utils { | 16 namespace drag_utils { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 35 // the hotspot for the drag image. | 35 // the hotspot for the drag image. |
| 36 void SetDragImageOnDataObject(const ChromeCanvas& canvas, | 36 void SetDragImageOnDataObject(const ChromeCanvas& canvas, |
| 37 int width, | 37 int width, |
| 38 int height, | 38 int height, |
| 39 int cursor_x_offset, | 39 int cursor_x_offset, |
| 40 int cursor_y_offset, | 40 int cursor_y_offset, |
| 41 IDataObject* data_object); | 41 IDataObject* data_object); |
| 42 | 42 |
| 43 } // namespace drag_utils | 43 } // namespace drag_utils |
| 44 | 44 |
| 45 #endif // #ifndef CHROME_BROWSER_DRAG_UTILS_H__ | 45 #endif // #ifndef VIEWS_DRAG_UTILS_H_ |
| OLD | NEW |