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

Unified Diff: chrome/browser/ui/views/frame/browser_view.cc

Issue 7466017: Fixes crash introduced by fix for 11229. The fix for 11229 made it so (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | views/widget/widget.h » ('j') | views/widget/widget.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/frame/browser_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
index 34959c3eb183044039fdda55d05bf239c0981d40..5bc4249fe38d0cb92b6fd505cc56042e3dd1b7fa 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -1687,7 +1687,8 @@ void BrowserView::OnWidgetMove() {
// Comment out for one cycle to see if this fixes dist tests.
// tabstrip_->DestroyDragController();
- status_bubble_->Reposition();
+ if (status_bubble_.get())
+ status_bubble_->Reposition();
BrowserBubbleHost::WindowMoved();
« no previous file with comments | « no previous file | views/widget/widget.h » ('j') | views/widget/widget.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698