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

Unified Diff: chrome/browser/ui/gtk/notifications/balloon_view_gtk.cc

Issue 6580024: Merge 75767 - It's not safe to delete the balloon view during MenuDelegate::S... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/648/src/
Patch Set: Created 9 years, 10 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 | « chrome/browser/ui/gtk/notifications/balloon_view_gtk.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/notifications/balloon_view_gtk.cc
===================================================================
--- chrome/browser/ui/gtk/notifications/balloon_view_gtk.cc (revision 75847)
+++ chrome/browser/ui/gtk/notifications/balloon_view_gtk.cc (working copy)
@@ -431,9 +431,13 @@
// Called when the menu stops showing.
void BalloonViewImpl::StoppedShowing() {
- if (pending_close_)
- DelayedClose(false);
menu_showing_ = false;
+ if (pending_close_) {
+ MessageLoop::current()->PostTask(
+ FROM_HERE,
+ method_factory_.NewRunnableMethod(
+ &BalloonViewImpl::DelayedClose, false));
+ }
}
gboolean BalloonViewImpl::OnDestroy(GtkWidget* widget) {
« no previous file with comments | « chrome/browser/ui/gtk/notifications/balloon_view_gtk.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698