Chromium Code Reviews| Index: ui/views/widget/widget.h |
| diff --git a/ui/views/widget/widget.h b/ui/views/widget/widget.h |
| index bc3f91473dd19de5175b0b939a69341424b7a329..c6e7b48cd4c4ec42e412675b9cb8c19034a6b72a 100644 |
| --- a/ui/views/widget/widget.h |
| +++ b/ui/views/widget/widget.h |
| @@ -793,6 +793,10 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate, |
| // TODO(beng): remove once we fold those objects onto this one. |
| void DestroyRootView(); |
| + // Notification that the drag performed by RunShellDrag() has completed. |
| + // Default implementation does nothing. |
| + virtual void OnDragComplete(); |
|
sky
2014/07/11 17:45:34
You should move the code in MenuController::StartD
Devlin
2014/07/11 18:43:51
Done (though not much of the code in StartDrag() i
sky
2014/07/11 19:15:20
I wanted to make sure the state (which you're righ
Devlin
2014/07/11 20:28:15
Yep, makes a lot of sense. :) Just wanted to make
|
| + |
| private: |
| friend class ComboboxTest; |
| friend class TextfieldTest; |