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

Unified Diff: chrome/browser/tab_contents/tab_contents_view_mac.mm

Issue 159021: Flip screen coordinates when converting NSEvent to WebMouseEvent. Enable proc... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « no previous file | webkit/api/src/mac/WebInputEventFactory.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/tab_contents_view_mac.mm
===================================================================
--- chrome/browser/tab_contents/tab_contents_view_mac.mm (revision 20948)
+++ chrome/browser/tab_contents/tab_contents_view_mac.mm (working copy)
@@ -185,10 +185,11 @@
// Tell the view to start a drag using |cocoa_view_| as the drag source. The
// source will get notified when the drag completes (success or failure) so
- // it can tell the render view host the drag is done. Windows does this with
- // a nested event loop, we get called back.
+ // it can tell the render view host the drag is done. The drag invokes a
+ // nested event loop, but we need to continue processing events.
NSPoint mousePoint = [currentEvent locationInWindow];
mousePoint = [cocoa_view_ convertPoint:mousePoint fromView:nil];
+ MessageLoop::current()->SetNestableTasksAllowed(true);
[cocoa_view_ dragImage:dragImage
at:mousePoint
offset:NSZeroSize
@@ -196,6 +197,7 @@
pasteboard:pasteboard
source:cocoa_view_
slideBack:YES];
+ MessageLoop::current()->SetNestableTasksAllowed(false);
}
void TabContentsViewMac::OnContentsDestroy() {
« no previous file with comments | « no previous file | webkit/api/src/mac/WebInputEventFactory.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698