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

Side by Side Diff: webkit/glue/webmenuitem.h

Issue 6410125: Extend Mac popup to handle more directionality.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/render_messages.cc ('k') | webkit/glue/webmenuitem.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef WEBMENUITEM_H_ 5 #ifndef WEBMENUITEM_H_
6 #define WEBMENUITEM_H_ 6 #define WEBMENUITEM_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 11 matching lines...) Expand all
22 }; 22 };
23 23
24 WebMenuItem(); 24 WebMenuItem();
25 WebMenuItem(const WebKit::WebMenuItemInfo& item); 25 WebMenuItem(const WebKit::WebMenuItemInfo& item);
26 WebMenuItem(const WebMenuItem& item); 26 WebMenuItem(const WebMenuItem& item);
27 ~WebMenuItem(); 27 ~WebMenuItem();
28 28
29 string16 label; 29 string16 label;
30 Type type; 30 Type type;
31 unsigned action; 31 unsigned action;
32 bool rtl;
33 bool directional_override;
32 bool enabled; 34 bool enabled;
33 bool checked; 35 bool checked;
34 std::vector<WebMenuItem> submenu; 36 std::vector<WebMenuItem> submenu;
35 }; 37 };
36 38
37 #endif // WEBMENUITEM_H_ 39 #endif // WEBMENUITEM_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages.cc ('k') | webkit/glue/webmenuitem.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698