Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Side by Side Diff: ui/base/dragdrop/drag_utils.h

Issue 2792183002: Delete ash-based code for Windows drag-and-drop graphics. (Closed)
Patch Set: ashdrag: addheaders Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698