| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 \ | 222 \ |
| 223 macro(connecting) \ | 223 macro(connecting) \ |
| 224 macro(addstream) \ | 224 macro(addstream) \ |
| 225 macro(removestream) \ | 225 macro(removestream) \ |
| 226 macro(statechange) \ | 226 macro(statechange) \ |
| 227 macro(removetrack) \ | 227 macro(removetrack) \ |
| 228 macro(mute) \ | 228 macro(mute) \ |
| 229 macro(unmute) \ | 229 macro(unmute) \ |
| 230 macro(icechange) \ | 230 macro(icechange) \ |
| 231 macro(icecandidate) \ | 231 macro(icecandidate) \ |
| 232 macro(negotationneeded) \ | 232 macro(negotiationneeded) \ |
| 233 \ | 233 \ |
| 234 macro(show) \ | 234 macro(show) \ |
| 235 \ | 235 \ |
| 236 macro(webkitpointerlockchange) \ | 236 macro(webkitpointerlockchange) \ |
| 237 macro(webkitpointerlockerror) \ | 237 macro(webkitpointerlockerror) \ |
| 238 \ | 238 \ |
| 239 macro(webkitRegionLayoutUpdate) \ | 239 macro(webkitRegionLayoutUpdate) \ |
| 240 \ | 240 \ |
| 241 macro(webkitnetworkinfochange) \ | 241 macro(webkitnetworkinfochange) \ |
| 242 \ | 242 \ |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 }; | 294 }; |
| 295 | 295 |
| 296 inline EventNames& eventNames() | 296 inline EventNames& eventNames() |
| 297 { | 297 { |
| 298 return threadGlobalData().eventNames(); | 298 return threadGlobalData().eventNames(); |
| 299 } | 299 } |
| 300 | 300 |
| 301 } | 301 } |
| 302 | 302 |
| 303 #endif | 303 #endif |
| OLD | NEW |