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

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

Issue 6288002: Adds some debugging in code in hopes of figuring out a crash in the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: Better comments 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 | views/controls/menu/menu_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/menu/menu_controller.h
diff --git a/views/controls/menu/menu_controller.h b/views/controls/menu/menu_controller.h
index 0ccd4a5b2fdb230110c2d7915f757d88074d4fdd..b28cad76ed1413b209e744a2ecc433d5538679c3 100644
--- a/views/controls/menu/menu_controller.h
+++ b/views/controls/menu/menu_controller.h
@@ -77,18 +77,6 @@ class MenuController : public MessageLoopForUI::Dispatcher {
// Whether or not drag operation is in progress.
bool drag_in_progress() const { return drag_in_progress_; }
- // Sets the selection to menu_item, a value of NULL unselects everything.
- // If open_submenu is true and menu_item has a submenu, the submenu is shown.
- // If update_immediately is true, submenus are opened immediately, otherwise
- // submenus are only opened after a timer fires.
- //
- // Internally this updates pending_state_ immediatley, and if
- // update_immediately is true, CommitPendingSelection is invoked to
- // show/hide submenus and update state_.
- void SetSelection(MenuItemView* menu_item,
- bool open_submenu,
- bool update_immediately);
-
// Cancels the current Run. See ExitType for a description of what happens
// with the various parameters.
void Cancel(ExitType type);
@@ -125,6 +113,22 @@ class MenuController : public MessageLoopForUI::Dispatcher {
struct SelectByCharDetails;
+ // Values supplied to SetSelection.
+ enum SetSelectionTypes {
+ SELECTION_DEFAULT = 0,
+
+ // If set submenus are opened immediately, otherwise submenus are only
+ // openned after a timer fires.
+ SELECTION_UPDATE_IMMEDIATELY = 1 << 0,
+
+ // If set and the menu_item has a submenu, the submenu is shown.
+ SELECTION_OPEN_SUBMENU = 1 << 1,
+
+ // SetSelection is being invoked as the result exiting or cancelling the
+ // menu. This is used for debugging.
+ SELECTION_EXIT = 1 << 2,
+ };
+
// Tracks selection information.
struct State {
State() : item(NULL), submenu_open(false) {}
@@ -183,6 +187,15 @@ class MenuController : public MessageLoopForUI::Dispatcher {
SubmenuView* submenu;
};
+ // Sets the selection to menu_item a value of NULL unselects
+ // everything. |types| is a bitmask of |SetSelectionTypes|.
+ //
+ // Internally this updates pending_state_ immediatley. state_ is only updated
+ // immediately if SELECTION_UPDATE_IMMEDIATELY is set. If
+ // SELECTION_UPDATE_IMMEDIATELY is not set CommitPendingSelection is invoked
+ // to show/hide submenus and update state_.
+ void SetSelection(MenuItemView* menu_item, int types);
+
// Sets the active MenuController.
static void SetActiveInstance(MenuController* controller);
« no previous file with comments | « no previous file | views/controls/menu/menu_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698