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

Unified Diff: chrome/browser/ui/cocoa/web_drag_source.mm

Issue 6203005: WebDragSource: Added a guard for null [contentView_ window] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: The last patch is broken. Fixed. Created 9 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/web_drag_source.mm
diff --git a/chrome/browser/ui/cocoa/web_drag_source.mm b/chrome/browser/ui/cocoa/web_drag_source.mm
index 24c121acf23194de85e3a8e6659744a91ea04866..2868cff9f59f5586cad0901943a7759395ac150d 100644
--- a/chrome/browser/ui/cocoa/web_drag_source.mm
+++ b/chrome/browser/ui/cocoa/web_drag_source.mm
@@ -257,7 +257,9 @@ void PromiseWriterTask::Run() {
rvh->DragSourceSystemDragEnded();
// Convert |screenPoint| to view coordinates and flip it.
- NSPoint localPoint = [self convertScreenPoint:screenPoint];
+ NSPoint localPoint = NSMakePoint(0, 0);
+ if ([contentsView_ window])
+ localPoint = [self convertScreenPoint:screenPoint];
NSRect viewFrame = [contentsView_ frame];
localPoint.y = viewFrame.size.height - localPoint.y;
// Flip |screenPoint|.
@@ -277,7 +279,9 @@ void PromiseWriterTask::Run() {
RenderViewHost* rvh = [contentsView_ tabContents]->render_view_host();
if (rvh) {
// Convert |screenPoint| to view coordinates and flip it.
- NSPoint localPoint = [self convertScreenPoint:screenPoint];
+ NSPoint localPoint = NSMakePoint(0, 0);
+ if ([contentsView_ window])
+ localPoint = [self convertScreenPoint:screenPoint];
NSRect viewFrame = [contentsView_ frame];
localPoint.y = viewFrame.size.height - localPoint.y;
// Flip |screenPoint|.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698