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

Side by Side Diff: sky/engine/public/web/WebInputEvent.h

Issue 640143004: Remove context menus. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « sky/engine/public/web/WebFrameClient.h ('k') | sky/engine/public/web/WebView.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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 Undefined = -1, 87 Undefined = -1,
88 TypeFirst = Undefined, 88 TypeFirst = Undefined,
89 89
90 // WebMouseEvent 90 // WebMouseEvent
91 MouseDown, 91 MouseDown,
92 MouseTypeFirst = MouseDown, 92 MouseTypeFirst = MouseDown,
93 MouseUp, 93 MouseUp,
94 MouseMove, 94 MouseMove,
95 MouseEnter, 95 MouseEnter,
96 MouseLeave, 96 MouseLeave,
97 ContextMenu, 97 MouseTypeLast = MouseLeave,
98 MouseTypeLast = ContextMenu,
99 98
100 // WebMouseWheelEvent 99 // WebMouseWheelEvent
101 MouseWheel, 100 MouseWheel,
102 101
103 // WebKeyboardEvent 102 // WebKeyboardEvent
104 RawKeyDown, 103 RawKeyDown,
105 KeyboardTypeFirst = RawKeyDown, 104 KeyboardTypeFirst = RawKeyDown,
106 KeyDown, 105 KeyDown,
107 KeyUp, 106 KeyUp,
108 Char, 107 Char,
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 , cancelable(true) 511 , cancelable(true)
513 { 512 {
514 } 513 }
515 }; 514 };
516 515
517 #pragma pack(pop) 516 #pragma pack(pop)
518 517
519 } // namespace blink 518 } // namespace blink
520 519
521 #endif 520 #endif
OLDNEW
« no previous file with comments | « sky/engine/public/web/WebFrameClient.h ('k') | sky/engine/public/web/WebView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698