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

Unified Diff: chrome/browser/ui/views/bookmark_bubble_view.cc

Issue 6145002: Fix browser crash due to bookmark bubble view loosing activation while gettin... (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/views/bookmark_bubble_view.cc
===================================================================
--- chrome/browser/ui/views/bookmark_bubble_view.cc (revision 70876)
+++ chrome/browser/ui/views/bookmark_bubble_view.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -92,6 +92,13 @@
InfoBubble* info_bubble = InfoBubble::Show(
parent->GetClientView()->GetWidget(), bounds, BubbleBorder::TOP_RIGHT,
bubble_, bubble_);
+ // |bubble_| can be set to NULL in InfoBubbleClosing when we close the bubble
+ // asynchronously. However, that can happen during the Show call above if the
+ // window loses activation while we are getting to ready to show the bubble,
+ // so we must check to make sure we still have a valid bubble before
+ // proceeding.
+ if (!bubble_)
+ return;
bubble_->set_info_bubble(info_bubble);
info_bubble->SizeToContents();
GURL url_ptr(url);
« 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