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

Unified Diff: chrome/browser/tab_contents/web_drag_dest_gtk.cc

Issue 7587015: Linux: Add some CHECKs to figure out a crash. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 4 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/tab_contents/web_drag_dest_gtk.cc
===================================================================
--- chrome/browser/tab_contents/web_drag_dest_gtk.cc (revision 96256)
+++ chrome/browser/tab_contents/web_drag_dest_gtk.cc (working copy)
@@ -90,7 +90,9 @@
void WebDragDestGtk::DragLeave() {
tab_contents_->render_view_host()->DragTargetDragLeave();
- DCHECK(tab_);
+ // TODO(thestig) Turn back to DCHECKs after we figure out bug 89388.
+ CHECK(tab_);
+ CHECK(tab_->bookmark_tab_helper());
if (tab_->bookmark_tab_helper()->GetBookmarkDragDelegate()) {
tab_->bookmark_tab_helper()->GetBookmarkDragDelegate()->OnDragLeave(
bookmark_drag_data_);
« 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