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

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

Issue 5110011: A non-GTK version of menus for touchui. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Address comments from sky. Created 10 years, 1 month 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
Index: views/controls/menu/menu_controller.cc
diff --git a/views/controls/menu/menu_controller.cc b/views/controls/menu/menu_controller.cc
index e0701a2cb9a9cf8d3a43c5595dbbe36ac2304254..b98f5b883129ad7a534fddeb6b44b3c72617831f 100644
--- a/views/controls/menu/menu_controller.cc
+++ b/views/controls/menu/menu_controller.cc
@@ -861,7 +861,15 @@ bool MenuController::Dispatch(GdkEvent* event) {
#if defined(TOUCH_UI)
bool MenuController::Dispatch(XEvent* xev) {
- return DispatchXEvent(xev);
+ if (!DispatchXEvent(xev))
+ return false;
+
+ // The event was handled and |exit_type_| was set. So terminate the event-loop
+ // that was started in MenuController::Run.
+ if (exit_type_ != EXIT_NONE) {
+ MessageLoopForUI::current()->QuitNow();
+ }
+ return true;
}
#endif

Powered by Google App Engine
This is Rietveld 408576698