Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: ui/views/cocoa/views_nswindow_delegate.mm

Issue 1747803003: MacViews: Implement Tab Dragging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix include. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/cocoa/cocoa_window_move_loop.mm ('k') | ui/views/views.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..e08ae56e82d9d04e980d395619aa3c1d00dc3e12 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 the window is
+ // being moved by the WindowServer live updates are not provided.
+ parent_->OnPositionChanged();
+}
+
- (void)windowDidBecomeKey:(NSNotification*)notification {
parent_->OnWindowKeyStatusChangedTo(true);
}
« no previous file with comments | « ui/views/cocoa/cocoa_window_move_loop.mm ('k') | ui/views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698