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

Unified Diff: views/controls/menu/native_menu_gtk.cc

Issue 521063: Fixes possible crash in menus on views/gtk. The crash would happen if... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 | « views/controls/menu/native_menu_gtk.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/menu/native_menu_gtk.cc
===================================================================
--- views/controls/menu/native_menu_gtk.cc (revision 35711)
+++ views/controls/menu/native_menu_gtk.cc (working copy)
@@ -66,7 +66,9 @@
: model_(model),
menu_(NULL),
menu_shown_(false),
- suppress_activate_signal_(false) {
+ suppress_activate_signal_(false),
+ menu_activated_(false),
+ activated_index_(-1) {
}
NativeMenuGtk::~NativeMenuGtk() {
@@ -77,6 +79,8 @@
// NativeMenuGtk, MenuWrapper implementation:
void NativeMenuGtk::RunMenuAt(const gfx::Point& point, int alignment) {
+ menu_activated_ = false;
+
UpdateStates();
Position position = { point, static_cast<Menu2::Alignment>(alignment) };
// TODO(beng): value of '1' will not work for context menus!
@@ -95,6 +99,14 @@
g_signal_handler_disconnect(G_OBJECT(menu_), handle_id);
menu_shown_ = false;
+
+ // Call into the model after the nested message loop quits. This way if the
+ // model ends up deleting us, or MessageLoop::Quit takes a while, there aren't
+ // any problems.
+ if (menu_activated_ && model_->IsEnabledAt(activated_index_) &&
+ MenuTypeCanExecute(model_->GetTypeAt(activated_index_))) {
+ model_->ActivatedAt(activated_index_);
+ }
}
void NativeMenuGtk::CancelMenu() {
@@ -293,10 +305,8 @@
return;
}
- if (model_->IsEnabledAt(position) &&
- MenuTypeCanExecute(model_->GetTypeAt(position))) {
- model_->ActivatedAt(position);
- }
+ menu_activated_ = true;
+ activated_index_ = position;
}
// static
« no previous file with comments | « views/controls/menu/native_menu_gtk.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698