| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload); | 335 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload); |
| 336 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); | 336 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); |
| 337 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); | 337 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); |
| 338 | 338 |
| 339 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima
tionStart); | 339 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima
tionStart); |
| 340 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA
nimationIteration); | 340 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA
nimationIteration); |
| 341 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati
onEnd); | 341 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati
onEnd); |
| 342 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi
tionEnd); | 342 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi
tionEnd); |
| 343 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(transitionend, transitionend); | 343 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(transitionend, transitionend); |
| 344 | 344 |
| 345 void captureEvents(); | |
| 346 void releaseEvents(); | |
| 347 | |
| 348 void finishedLoading(); | 345 void finishedLoading(); |
| 349 | 346 |
| 350 using RefCounted<DOMWindow>::ref; | 347 using RefCounted<DOMWindow>::ref; |
| 351 using RefCounted<DOMWindow>::deref; | 348 using RefCounted<DOMWindow>::deref; |
| 352 | 349 |
| 353 DEFINE_ATTRIBUTE_EVENT_LISTENER(devicemotion); | 350 DEFINE_ATTRIBUTE_EVENT_LISTENER(devicemotion); |
| 354 DEFINE_ATTRIBUTE_EVENT_LISTENER(deviceorientation); | 351 DEFINE_ATTRIBUTE_EVENT_LISTENER(deviceorientation); |
| 355 | 352 |
| 356 // HTML 5 key/value storage | 353 // HTML 5 key/value storage |
| 357 Storage* sessionStorage(ExceptionCode&) const; | 354 Storage* sessionStorage(ExceptionCode&) const; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 } | 442 } |
| 446 | 443 |
| 447 inline String DOMWindow::defaultStatus() const | 444 inline String DOMWindow::defaultStatus() const |
| 448 { | 445 { |
| 449 return m_defaultStatus; | 446 return m_defaultStatus; |
| 450 } | 447 } |
| 451 | 448 |
| 452 } // namespace WebCore | 449 } // namespace WebCore |
| 453 | 450 |
| 454 #endif // DOMWindow_h | 451 #endif // DOMWindow_h |
| OLD | NEW |