| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_BASE_DRAGDROP_DRAG_UTILS_H_ | |
| 6 #define UI_BASE_DRAGDROP_DRAG_UTILS_H_ | |
| 7 | |
| 8 #include "ui/base/ui_base_export.h" | |
| 9 | |
| 10 namespace gfx { | |
| 11 class ImageSkia; | |
| 12 class Vector2d; | |
| 13 } | |
| 14 | |
| 15 namespace ui { | |
| 16 class OSExchangeData; | |
| 17 } | |
| 18 | |
| 19 namespace drag_utils { | |
| 20 | |
| 21 // Sets the drag image on data_object from the supplied ImageSkia. | |
| 22 // |cursor_offset| gives the location of the hotspot for the drag image. | |
| 23 UI_BASE_EXPORT void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, | |
| 24 const gfx::Vector2d& cursor_offset, | |
| 25 ui::OSExchangeData* data_object); | |
| 26 | |
| 27 } // namespace drag_utils | |
| 28 | |
| 29 #endif // UI_BASE_DRAGDROP_DRAG_UTILS_H_ | |
| OLD | NEW |