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

Side by Side Diff: Source/core/dom/EventNames.h

Issue 14192043: Web MIDI: implement MIDIMessageEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: OWNERS Created 7 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Jon Shier (jshier@iastate.edu) 3 * Copyright (C) 2006 Jon Shier (jshier@iastate.edu)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 macro(invalid) \ 81 macro(invalid) \
82 macro(keydown) \ 82 macro(keydown) \
83 macro(keypress) \ 83 macro(keypress) \
84 macro(keyup) \ 84 macro(keyup) \
85 macro(levelchange) \ 85 macro(levelchange) \
86 macro(load) \ 86 macro(load) \
87 macro(loading) \ 87 macro(loading) \
88 macro(loadingdone) \ 88 macro(loadingdone) \
89 macro(loadstart) \ 89 macro(loadstart) \
90 macro(message) \ 90 macro(message) \
91 macro(midimessage) \
91 macro(mousedown) \ 92 macro(mousedown) \
92 macro(mousemove) \ 93 macro(mousemove) \
93 macro(mouseout) \ 94 macro(mouseout) \
94 macro(mouseover) \ 95 macro(mouseover) \
95 macro(mouseup) \ 96 macro(mouseup) \
96 macro(mousewheel) \ 97 macro(mousewheel) \
97 macro(noupdate) \ 98 macro(noupdate) \
98 macro(obsolete) \ 99 macro(obsolete) \
99 macro(offline) \ 100 macro(offline) \
100 macro(online) \ 101 macro(online) \
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 }; 311 };
311 312
312 inline EventNames& eventNames() 313 inline EventNames& eventNames()
313 { 314 {
314 return threadGlobalData().eventNames(); 315 return threadGlobalData().eventNames();
315 } 316 }
316 317
317 } 318 }
318 319
319 #endif 320 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698