| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 void dispose(); | 256 void dispose(); |
| 257 | 257 |
| 258 void dispatchLoadEvent(); | 258 void dispatchLoadEvent(); |
| 259 void clearDocument(); | 259 void clearDocument(); |
| 260 | 260 |
| 261 void willDetachFrameHost(); | 261 void willDetachFrameHost(); |
| 262 | 262 |
| 263 Member<LocalFrame> m_frame; | 263 Member<LocalFrame> m_frame; |
| 264 Member<Document> m_document; | 264 Member<Document> m_document; |
| 265 Member<DOMVisualViewport> m_visualViewport; | 265 Member<DOMVisualViewport> m_visualViewport; |
| 266 Timer<LocalDOMWindow> m_unusedPreloadsTimer; | 266 TaskRunnerTimer<LocalDOMWindow> m_unusedPreloadsTimer; |
| 267 | 267 |
| 268 bool m_shouldPrintWhenFinishedLoading; | 268 bool m_shouldPrintWhenFinishedLoading; |
| 269 | 269 |
| 270 HeapHashSet<WeakMember<DOMWindowProperty>> m_properties; | 270 HeapHashSet<WeakMember<DOMWindowProperty>> m_properties; |
| 271 | 271 |
| 272 mutable Member<Screen> m_screen; | 272 mutable Member<Screen> m_screen; |
| 273 mutable Member<History> m_history; | 273 mutable Member<History> m_history; |
| 274 mutable Member<BarProp> m_locationbar; | 274 mutable Member<BarProp> m_locationbar; |
| 275 mutable Member<BarProp> m_menubar; | 275 mutable Member<BarProp> m_menubar; |
| 276 mutable Member<BarProp> m_personalbar; | 276 mutable Member<BarProp> m_personalbar; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 303 return m_status; | 303 return m_status; |
| 304 } | 304 } |
| 305 | 305 |
| 306 inline String LocalDOMWindow::defaultStatus() const { | 306 inline String LocalDOMWindow::defaultStatus() const { |
| 307 return m_defaultStatus; | 307 return m_defaultStatus; |
| 308 } | 308 } |
| 309 | 309 |
| 310 } // namespace blink | 310 } // namespace blink |
| 311 | 311 |
| 312 #endif // LocalDOMWindow_h | 312 #endif // LocalDOMWindow_h |
| OLD | NEW |