Chromium Code Reviews| Index: services/ui/public/cpp/window.h |
| diff --git a/services/ui/public/cpp/window.h b/services/ui/public/cpp/window.h |
| index ada2cf63b6d41fa6b66259dde8fe81c4522f84da..de544387468d6dee38a682ac9fba7a879f3c33af 100644 |
| --- a/services/ui/public/cpp/window.h |
| +++ b/services/ui/public/cpp/window.h |
| @@ -231,14 +231,15 @@ class Window { |
| // to a better place. |
| void RequestClose(); |
| - // Starts an inter-process drag and drop operation. |
| + // Starts an inter-process drag and drop operation. When this finishes, will |
| + // return the tuple [success, action_taken] to |callback|. |
|
sky
2016/09/20 21:42:03
Document what action_take corresponds to.
Elliot Glaysher
2016/09/20 22:05:25
Done.
|
| void PerformDragDrop( |
| int drag_pointer, |
| const std::map<std::string, std::vector<uint8_t>>& drag_data, |
| int drag_operation, |
| const gfx::Point& cursor_location, |
| const SkBitmap& bitmap, |
| - const base::Callback<void(bool)>& callback); |
| + const base::Callback<void(bool, uint32_t)>& callback); |
| // Tells the window manager to take control of moving the window. Returns |
| // true if the move wasn't canceled. |