| OLD | NEW |
| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 macro(compositionstart) \ | 51 macro(compositionstart) \ |
| 52 macro(compositionupdate) \ | 52 macro(compositionupdate) \ |
| 53 macro(connect) \ | 53 macro(connect) \ |
| 54 macro(contextmenu) \ | 54 macro(contextmenu) \ |
| 55 macro(copy) \ | 55 macro(copy) \ |
| 56 macro(cut) \ | 56 macro(cut) \ |
| 57 macro(dblclick) \ | 57 macro(dblclick) \ |
| 58 macro(devicemotion) \ | 58 macro(devicemotion) \ |
| 59 macro(deviceorientation) \ | 59 macro(deviceorientation) \ |
| 60 macro(dischargingtimechange) \ | 60 macro(dischargingtimechange) \ |
| 61 macro(disconnect) \ |
| 61 macro(display) \ | 62 macro(display) \ |
| 62 macro(downloading) \ | 63 macro(downloading) \ |
| 63 macro(drag) \ | 64 macro(drag) \ |
| 64 macro(dragend) \ | 65 macro(dragend) \ |
| 65 macro(dragenter) \ | 66 macro(dragenter) \ |
| 66 macro(dragleave) \ | 67 macro(dragleave) \ |
| 67 macro(dragover) \ | 68 macro(dragover) \ |
| 68 macro(dragstart) \ | 69 macro(dragstart) \ |
| 69 macro(drop) \ | 70 macro(drop) \ |
| 70 macro(error) \ | 71 macro(error) \ |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 }; | 312 }; |
| 312 | 313 |
| 313 inline EventNames& eventNames() | 314 inline EventNames& eventNames() |
| 314 { | 315 { |
| 315 return threadGlobalData().eventNames(); | 316 return threadGlobalData().eventNames(); |
| 316 } | 317 } |
| 317 | 318 |
| 318 } | 319 } |
| 319 | 320 |
| 320 #endif | 321 #endif |
| OLD | NEW |