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

Side by Side Diff: views/controls/menu/nested_dispatcher_gtk.cc

Issue 5110011: A non-GTK version of menus for touchui. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix compile for touch on chromeos Created 10 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/controls/menu/nested_dispatcher_gtk.h ('k') | views/focus/accelerator_handler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "views/controls/menu/nested_dispatcher_gtk.h" 5 #include "views/controls/menu/nested_dispatcher_gtk.h"
6 6
7 #if defined(TOUCH_UI) 7 #if defined(TOUCH_UI)
8 #include "views/focus/accelerator_handler.h" 8 #include "views/focus/accelerator_handler.h"
9 #endif 9 #endif
10 10
(...skipping 28 matching lines...) Expand all
39 (creator_)->Dispatch(event); 39 (creator_)->Dispatch(event);
40 #else 40 #else
41 return creator_->Dispatch(event); 41 return creator_->Dispatch(event);
42 #endif 42 #endif
43 } else { 43 } else {
44 return false; 44 return false;
45 } 45 }
46 } 46 }
47 47
48 #if defined(TOUCH_UI) 48 #if defined(TOUCH_UI)
49 bool NestedDispatcherGtk::Dispatch(XEvent* xevent) { 49 base::MessagePumpGlibXDispatcher::DispatchStatus NestedDispatcherGtk::Dispatch(
50 return creator_ ? creator_->Dispatch(xevent) : false; 50 XEvent* xevent) {
51 return creator_->Dispatch(xevent);
51 } 52 }
52 #endif 53 #endif
53 54
54 } // namespace views 55 } // namespace views
OLDNEW
« no previous file with comments | « views/controls/menu/nested_dispatcher_gtk.h ('k') | views/focus/accelerator_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698