OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 void releaseEvents() {} | 240 void releaseEvents() {} |
241 External* external(); | 241 External* external(); |
242 | 242 |
243 bool isSecureContext() const; | 243 bool isSecureContext() const; |
244 | 244 |
245 DEFINE_ATTRIBUTE_EVENT_LISTENER(animationend); | 245 DEFINE_ATTRIBUTE_EVENT_LISTENER(animationend); |
246 DEFINE_ATTRIBUTE_EVENT_LISTENER(animationiteration); | 246 DEFINE_ATTRIBUTE_EVENT_LISTENER(animationiteration); |
247 DEFINE_ATTRIBUTE_EVENT_LISTENER(animationstart); | 247 DEFINE_ATTRIBUTE_EVENT_LISTENER(animationstart); |
248 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); | 248 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); |
249 DEFINE_ATTRIBUTE_EVENT_LISTENER(transitionend); | 249 DEFINE_ATTRIBUTE_EVENT_LISTENER(transitionend); |
250 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel); | |
251 | 250 |
252 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, | 251 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, |
253 webkitAnimationStart); | 252 webkitAnimationStart); |
254 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, | 253 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, |
255 webkitAnimationIteration); | 254 webkitAnimationIteration); |
256 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, | 255 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, |
257 webkitAnimationEnd); | 256 webkitAnimationEnd); |
258 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, | 257 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, |
259 webkitTransitionEnd); | 258 webkitTransitionEnd); |
260 | 259 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 return status_; | 389 return status_; |
391 } | 390 } |
392 | 391 |
393 inline String LocalDOMWindow::defaultStatus() const { | 392 inline String LocalDOMWindow::defaultStatus() const { |
394 return default_status_; | 393 return default_status_; |
395 } | 394 } |
396 | 395 |
397 } // namespace blink | 396 } // namespace blink |
398 | 397 |
399 #endif // LocalDOMWindow_h | 398 #endif // LocalDOMWindow_h |
OLD | NEW |