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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 | 186 |
187 using EventTarget::dispatchEvent; | 187 using EventTarget::dispatchEvent; |
188 DispatchEventResult dispatchEvent(Event*, EventTarget*); | 188 DispatchEventResult dispatchEvent(Event*, EventTarget*); |
189 | 189 |
190 void finishedLoading(); | 190 void finishedLoading(); |
191 | 191 |
192 // Dispatch the (deprecated) orientationchange event to this DOMWindow and | 192 // Dispatch the (deprecated) orientationchange event to this DOMWindow and |
193 // recurse on its child frames. | 193 // recurse on its child frames. |
194 void sendOrientationChangeEvent(); | 194 void sendOrientationChangeEvent(); |
195 | 195 |
196 void willDetachDocumentFromFrame(); | |
197 | |
198 EventQueue* getEventQueue() const; | 196 EventQueue* getEventQueue() const; |
199 void enqueueWindowEvent(Event*); | 197 void enqueueWindowEvent(Event*); |
200 void enqueueDocumentEvent(Event*); | 198 void enqueueDocumentEvent(Event*); |
201 void enqueuePageshowEvent(PageshowEventPersistence); | 199 void enqueuePageshowEvent(PageshowEventPersistence); |
202 void enqueueHashchangeEvent(const String& oldURL, const String& newURL); | 200 void enqueueHashchangeEvent(const String& oldURL, const String& newURL); |
203 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>); | 201 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>); |
204 void dispatchWindowLoadEvent(); | 202 void dispatchWindowLoadEvent(); |
205 void documentWasClosed(); | 203 void documentWasClosed(); |
206 void statePopped(PassRefPtr<SerializedScriptValue>); | 204 void statePopped(PassRefPtr<SerializedScriptValue>); |
207 | 205 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 } | 276 } |
279 | 277 |
280 inline String LocalDOMWindow::defaultStatus() const | 278 inline String LocalDOMWindow::defaultStatus() const |
281 { | 279 { |
282 return m_defaultStatus; | 280 return m_defaultStatus; |
283 } | 281 } |
284 | 282 |
285 } // namespace blink | 283 } // namespace blink |
286 | 284 |
287 #endif // LocalDOMWindow_h | 285 #endif // LocalDOMWindow_h |
OLD | NEW |