Chromium Code Reviews| Index: ui/views/cocoa/views_nswindow_delegate.mm |
| diff --git a/ui/views/cocoa/views_nswindow_delegate.mm b/ui/views/cocoa/views_nswindow_delegate.mm |
| index 75346a6a8076dadb929abc2f858e5a2cf57e6892..ea6945b2e65f528a67d24eec0208fd4dd61394e9 100644 |
| --- a/ui/views/cocoa/views_nswindow_delegate.mm |
| +++ b/ui/views/cocoa/views_nswindow_delegate.mm |
| @@ -79,6 +79,13 @@ |
| parent_->OnSizeChanged(); |
| } |
| +- (void)windowDidMove:(NSNotification*)notification { |
| + // Note: windowDidMove: is sent only once at the end of a window drag. There |
| + // is also windowWillMove: sent at the start, also once. When window is being |
|
tapted
2016/06/06 07:12:36
nit: window -> the window
themblsha
2016/06/06 17:20:27
Done.
|
| + // moved by the WindowServer live updates are not provided. |
| + parent_->OnPositionChanged(); |
| +} |
| + |
| - (void)windowDidBecomeKey:(NSNotification*)notification { |
| parent_->OnWindowKeyStatusChangedTo(true); |
| } |