| 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 25 matching lines...) Expand all Loading... |
| 36 #include "wtf/Assertions.h" | 36 #include "wtf/Assertions.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 #include <memory> | 38 #include <memory> |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class CustomElementRegistry; | 42 class CustomElementRegistry; |
| 43 class DOMWindowEventQueue; | 43 class DOMWindowEventQueue; |
| 44 class DOMWindowProperty; | 44 class DOMWindowProperty; |
| 45 class DocumentInit; | 45 class DocumentInit; |
| 46 class EventListener; | |
| 47 class EventQueue; | 46 class EventQueue; |
| 48 class FrameConsole; | 47 class FrameConsole; |
| 49 class MessageEvent; | 48 class MessageEvent; |
| 50 class Page; | |
| 51 class PostMessageTimer; | 49 class PostMessageTimer; |
| 52 class SecurityOrigin; | 50 class SecurityOrigin; |
| 53 class SourceLocation; | 51 class SourceLocation; |
| 54 class DOMVisualViewport; | 52 class DOMVisualViewport; |
| 55 | 53 |
| 56 enum PageshowEventPersistence { | 54 enum PageshowEventPersistence { |
| 57 PageshowEventNotPersisted = 0, | 55 PageshowEventNotPersisted = 0, |
| 58 PageshowEventPersisted = 1 | 56 PageshowEventPersisted = 1 |
| 59 }; | 57 }; |
| 60 | 58 |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 return m_status; | 301 return m_status; |
| 304 } | 302 } |
| 305 | 303 |
| 306 inline String LocalDOMWindow::defaultStatus() const { | 304 inline String LocalDOMWindow::defaultStatus() const { |
| 307 return m_defaultStatus; | 305 return m_defaultStatus; |
| 308 } | 306 } |
| 309 | 307 |
| 310 } // namespace blink | 308 } // namespace blink |
| 311 | 309 |
| 312 #endif // LocalDOMWindow_h | 310 #endif // LocalDOMWindow_h |
| OLD | NEW |