| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>); | 201 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>); |
| 202 void dispatchWindowLoadEvent(); | 202 void dispatchWindowLoadEvent(); |
| 203 void documentWasClosed(); | 203 void documentWasClosed(); |
| 204 void statePopped(PassRefPtr<SerializedScriptValue>); | 204 void statePopped(PassRefPtr<SerializedScriptValue>); |
| 205 | 205 |
| 206 // FIXME: This shouldn't be public once LocalDOMWindow becomes ExecutionCont
ext. | 206 // FIXME: This shouldn't be public once LocalDOMWindow becomes ExecutionCont
ext. |
| 207 void clearEventQueue(); | 207 void clearEventQueue(); |
| 208 | 208 |
| 209 void acceptLanguagesChanged(); | 209 void acceptLanguagesChanged(); |
| 210 | 210 |
| 211 virtual void trace(Visitor*) override; | |
| 212 | |
| 213 protected: | 211 protected: |
| 214 DOMWindowLifecycleNotifier& lifecycleNotifier(); | 212 DOMWindowLifecycleNotifier& lifecycleNotifier(); |
| 215 | 213 |
| 216 private: | 214 private: |
| 217 explicit LocalDOMWindow(LocalFrame&); | 215 explicit LocalDOMWindow(LocalFrame&); |
| 218 | 216 |
| 219 Page* page(); | 217 Page* page(); |
| 220 | 218 |
| 221 virtual void frameDestroyed() override; | 219 virtual void frameDestroyed() override; |
| 222 virtual void willDetachFrameHost() override; | 220 virtual void willDetachFrameHost() override; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 253 | 251 |
| 254 mutable RefPtr<DOMWindowCSS> m_css; | 252 mutable RefPtr<DOMWindowCSS> m_css; |
| 255 | 253 |
| 256 RefPtr<DOMWindowEventQueue> m_eventQueue; | 254 RefPtr<DOMWindowEventQueue> m_eventQueue; |
| 257 RefPtr<SerializedScriptValue> m_pendingStateObject; | 255 RefPtr<SerializedScriptValue> m_pendingStateObject; |
| 258 }; | 256 }; |
| 259 | 257 |
| 260 } // namespace blink | 258 } // namespace blink |
| 261 | 259 |
| 262 #endif // LocalDOMWindow_h | 260 #endif // LocalDOMWindow_h |
| OLD | NEW |