| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 macro(selectstart) \ | 118 macro(selectstart) \ |
| 119 macro(selectionchange) \ | 119 macro(selectionchange) \ |
| 120 macro(storage) \ | 120 macro(storage) \ |
| 121 macro(submit) \ | 121 macro(submit) \ |
| 122 macro(textInput) \ | 122 macro(textInput) \ |
| 123 macro(unload) \ | 123 macro(unload) \ |
| 124 macro(updateready) \ | 124 macro(updateready) \ |
| 125 macro(upgradeneeded) \ | 125 macro(upgradeneeded) \ |
| 126 macro(versionchange) \ | 126 macro(versionchange) \ |
| 127 macro(webkitvisibilitychange) \ | 127 macro(webkitvisibilitychange) \ |
| 128 macro(wheel) \ |
| 128 macro(write) \ | 129 macro(write) \ |
| 129 macro(writeend) \ | 130 macro(writeend) \ |
| 130 macro(writestart) \ | 131 macro(writestart) \ |
| 131 macro(zoom) \ | 132 macro(zoom) \ |
| 132 \ | 133 \ |
| 133 macro(DOMActivate) \ | 134 macro(DOMActivate) \ |
| 134 macro(DOMFocusIn) \ | 135 macro(DOMFocusIn) \ |
| 135 macro(DOMFocusOut) \ | 136 macro(DOMFocusOut) \ |
| 136 macro(DOMCharacterDataModified) \ | 137 macro(DOMCharacterDataModified) \ |
| 137 macro(DOMNodeInserted) \ | 138 macro(DOMNodeInserted) \ |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 }; | 324 }; |
| 324 | 325 |
| 325 inline EventNames& eventNames() | 326 inline EventNames& eventNames() |
| 326 { | 327 { |
| 327 return threadGlobalData().eventNames(); | 328 return threadGlobalData().eventNames(); |
| 328 } | 329 } |
| 329 | 330 |
| 330 } | 331 } |
| 331 | 332 |
| 332 #endif | 333 #endif |
| OLD | NEW |