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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 178 |
179 using EventTarget::dispatchEvent; | 179 using EventTarget::dispatchEvent; |
180 DispatchEventResult dispatchEvent(Event*, EventTarget*); | 180 DispatchEventResult dispatchEvent(Event*, EventTarget*); |
181 | 181 |
182 void finishedLoading(); | 182 void finishedLoading(); |
183 | 183 |
184 // Dispatch the (deprecated) orientationchange event to this DOMWindow and | 184 // Dispatch the (deprecated) orientationchange event to this DOMWindow and |
185 // recurse on its child frames. | 185 // recurse on its child frames. |
186 void sendOrientationChangeEvent(); | 186 void sendOrientationChangeEvent(); |
187 | 187 |
188 void willDetachDocumentFromFrame(); | |
189 | |
190 EventQueue* getEventQueue() const; | 188 EventQueue* getEventQueue() const; |
191 void enqueueWindowEvent(Event*); | 189 void enqueueWindowEvent(Event*); |
192 void enqueueDocumentEvent(Event*); | 190 void enqueueDocumentEvent(Event*); |
193 void enqueuePageshowEvent(PageshowEventPersistence); | 191 void enqueuePageshowEvent(PageshowEventPersistence); |
194 void enqueueHashchangeEvent(const String& oldURL, const String& newURL); | 192 void enqueueHashchangeEvent(const String& oldURL, const String& newURL); |
195 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>); | 193 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>); |
196 void dispatchWindowLoadEvent(); | 194 void dispatchWindowLoadEvent(); |
197 void documentWasClosed(); | 195 void documentWasClosed(); |
198 void statePopped(PassRefPtr<SerializedScriptValue>); | 196 void statePopped(PassRefPtr<SerializedScriptValue>); |
199 | 197 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 } | 267 } |
270 | 268 |
271 inline String LocalDOMWindow::defaultStatus() const | 269 inline String LocalDOMWindow::defaultStatus() const |
272 { | 270 { |
273 return m_defaultStatus; | 271 return m_defaultStatus; |
274 } | 272 } |
275 | 273 |
276 } // namespace blink | 274 } // namespace blink |
277 | 275 |
278 #endif // LocalDOMWindow_h | 276 #endif // LocalDOMWindow_h |
OLD | NEW |