| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 macro(search) \ | 99 macro(search) \ |
| 100 macro(select) \ | 100 macro(select) \ |
| 101 macro(selectstart) \ | 101 macro(selectstart) \ |
| 102 macro(selectionchange) \ | 102 macro(selectionchange) \ |
| 103 macro(storage) \ | 103 macro(storage) \ |
| 104 macro(submit) \ | 104 macro(submit) \ |
| 105 macro(textInput) \ | 105 macro(textInput) \ |
| 106 macro(unload) \ | 106 macro(unload) \ |
| 107 macro(updateready) \ | 107 macro(updateready) \ |
| 108 macro(versionchange) \ | 108 macro(versionchange) \ |
| 109 macro(webkitvisibilitystatechange) \ | 109 macro(webkitvisibilitychange) \ |
| 110 macro(write) \ | 110 macro(write) \ |
| 111 macro(writeend) \ | 111 macro(writeend) \ |
| 112 macro(writestart) \ | 112 macro(writestart) \ |
| 113 macro(zoom) \ | 113 macro(zoom) \ |
| 114 \ | 114 \ |
| 115 macro(DOMActivate) \ | 115 macro(DOMActivate) \ |
| 116 macro(DOMFocusIn) \ | 116 macro(DOMFocusIn) \ |
| 117 macro(DOMFocusOut) \ | 117 macro(DOMFocusOut) \ |
| 118 macro(DOMAttrModified) \ | 118 macro(DOMAttrModified) \ |
| 119 macro(DOMCharacterDataModified) \ | 119 macro(DOMCharacterDataModified) \ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 inline EventNames& eventNames() | 198 inline EventNames& eventNames() |
| 199 { | 199 { |
| 200 return threadGlobalData().eventNames(); | 200 return threadGlobalData().eventNames(); |
| 201 } | 201 } |
| 202 | 202 |
| 203 } | 203 } |
| 204 | 204 |
| 205 #endif | 205 #endif |
| OLD | NEW |