Index: ui/aura/client/drag_drop_client.h |
diff --git a/ui/aura/client/drag_drop_client.h b/ui/aura/client/drag_drop_client.h |
index bed334ce1b9c63c09b76ceaada903f5c693b6ade..0df38b5b24d46696070fb3e2088bb64782aabd73 100644 |
--- a/ui/aura/client/drag_drop_client.h |
+++ b/ui/aura/client/drag_drop_client.h |
@@ -40,6 +40,11 @@ class AURA_EXPORT DragDropClient { |
// Returns true if a drag and drop session is in progress. |
virtual bool IsDragDropInProgress() = 0; |
+ |
+ // Returns the current cursor according to the appropriate drag effect. This |
+ // should only be called if IsDragDropInProgress() returns true. If it is |
+ // called otherwise, the returned cursor is arbitrary. |
+ virtual gfx::NativeCursor GetDragCursor() = 0; |
}; |
AURA_EXPORT void SetDragDropClient(RootWindow* root_window, |