| Index: services/ui/public/interfaces/window_tree.mojom
|
| diff --git a/services/ui/public/interfaces/window_tree.mojom b/services/ui/public/interfaces/window_tree.mojom
|
| index 6d4782528b725a5ea7beb1088809b7f37f3846d0..fa2023e7a39ae2d3bdbee5629fed6e3cf725e44e 100644
|
| --- a/services/ui/public/interfaces/window_tree.mojom
|
| +++ b/services/ui/public/interfaces/window_tree.mojom
|
| @@ -450,10 +450,14 @@ interface WindowTreeClient {
|
| OnCompleteDrop(uint32 window,
|
| uint32 key_state,
|
| gfx.mojom.Point position,
|
| - uint32 effect_bitmask) => (uint32 effect_taken);
|
| + uint32 effect_bitmask) => (uint32 action_taken);
|
|
|
| - // Called after OnDragDrop completes for every connection which received an
|
| - // OnDragDropStart() message. This signals that a client can forget the
|
| + // Called on the client that requested PerformDragDrop() to return which drag
|
| + // action was completed. This is called instead of OnChangeCompleted().
|
| + OnPerformDragDropCompleted(uint32 window, bool success, uint32 action_taken);
|
| +
|
| + // Called after OnCompleteDrop completes for every connection which received
|
| + // an OnDragDropStart() message. This signals that a client can forget the
|
| // |drag_data| passed in via the first message.
|
| OnDragDropDone();
|
|
|
|
|