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

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: 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..a0e806e598bf91f8ec655f279b204026facf17f3 100644
--- a/chrome/browser/ui/cocoa/web_drag_source.mm
+++ b/chrome/browser/ui/cocoa/web_drag_source.mm
@@ -4,6 +4,8 @@
#import "chrome/browser/ui/cocoa/web_drag_source.h"
+#include <limits>
jianli 2011/01/12 21:32:27 Why is this include needed in this patch?
gmorrita 2011/01/13 08:34:43 Oops. removed.
+
#include "app/mac/nsimage_cache.h"
#include "base/file_path.h"
#include "base/string_util.h"
@@ -253,7 +255,7 @@ void PromiseWriterTask::Run() {
- (void)endDragAt:(NSPoint)screenPoint
operation:(NSDragOperation)operation {
RenderViewHost* rvh = [contentsView_ tabContents]->render_view_host();
- if (rvh) {
+ if (rvh && [contentsView_ window]) {
jianli 2011/01/12 21:32:27 It might be better to check [contentsView_ window]
rvh->DragSourceSystemDragEnded();
// Convert |screenPoint| to view coordinates and flip it.
@@ -275,7 +277,7 @@ void PromiseWriterTask::Run() {
- (void)moveDragTo:(NSPoint)screenPoint {
RenderViewHost* rvh = [contentsView_ tabContents]->render_view_host();
- if (rvh) {
+ if (rvh && [contentsView_ window]) {
jianli 2011/01/12 21:32:27 ditto.
// Convert |screenPoint| to view coordinates and flip it.
NSPoint localPoint = [self convertScreenPoint:screenPoint];
NSRect viewFrame = [contentsView_ frame];
« 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