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

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

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 | « no previous file | views/controls/menu/native_menu_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/menu/native_menu_gtk.h
===================================================================
--- views/controls/menu/native_menu_gtk.h (revision 35711)
+++ views/controls/menu/native_menu_gtk.h (working copy)
@@ -63,6 +63,12 @@
// state is changed by |UpdateStates()| API.
bool suppress_activate_signal_;
+ // Did the user select something from the menu?
+ bool menu_activated_;
+
+ // If menu_activated_ is true, this is the index of the item.
+ int activated_index_;
+
DISALLOW_COPY_AND_ASSIGN(NativeMenuGtk);
};
« no previous file with comments | « no previous file | views/controls/menu/native_menu_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698