| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 macro(seeking) \ | 156 macro(seeking) \ |
| 157 macro(timeupdate) \ | 157 macro(timeupdate) \ |
| 158 macro(volumechange) \ | 158 macro(volumechange) \ |
| 159 macro(waiting) \ | 159 macro(waiting) \ |
| 160 \ | 160 \ |
| 161 macro(addtrack) \ | 161 macro(addtrack) \ |
| 162 macro(cuechange) \ | 162 macro(cuechange) \ |
| 163 macro(enter) \ | 163 macro(enter) \ |
| 164 macro(exit) \ | 164 macro(exit) \ |
| 165 \ | 165 \ |
| 166 macro(webkitbeginfullscreen) \ | |
| 167 macro(webkitendfullscreen) \ | |
| 168 \ | |
| 169 macro(webkitaddsourcebuffer) \ | 166 macro(webkitaddsourcebuffer) \ |
| 170 macro(webkitremovesourcebuffer) \ | 167 macro(webkitremovesourcebuffer) \ |
| 171 macro(webkitsourceopen) \ | 168 macro(webkitsourceopen) \ |
| 172 macro(webkitsourceended) \ | 169 macro(webkitsourceended) \ |
| 173 macro(webkitsourceclose) \ | 170 macro(webkitsourceclose) \ |
| 174 \ | 171 \ |
| 175 macro(webkitkeyadded) \ | 172 macro(webkitkeyadded) \ |
| 176 macro(webkitkeyerror) \ | 173 macro(webkitkeyerror) \ |
| 177 macro(webkitkeymessage) \ | 174 macro(webkitkeymessage) \ |
| 178 macro(webkitneedkey) \ | 175 macro(webkitneedkey) \ |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 }; | 309 }; |
| 313 | 310 |
| 314 inline EventNames& eventNames() | 311 inline EventNames& eventNames() |
| 315 { | 312 { |
| 316 return threadGlobalData().eventNames(); | 313 return threadGlobalData().eventNames(); |
| 317 } | 314 } |
| 318 | 315 |
| 319 } | 316 } |
| 320 | 317 |
| 321 #endif | 318 #endif |
| OLD | NEW |