| 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 23 matching lines...) Expand all Loading... |
| 34 #include "sky/engine/core/frame/FrameDestructionObserver.h" | 34 #include "sky/engine/core/frame/FrameDestructionObserver.h" |
| 35 #include "sky/engine/platform/LifecycleContext.h" | 35 #include "sky/engine/platform/LifecycleContext.h" |
| 36 #include "sky/engine/platform/Supplementable.h" | 36 #include "sky/engine/platform/Supplementable.h" |
| 37 #include "sky/engine/platform/heap/Handle.h" | 37 #include "sky/engine/platform/heap/Handle.h" |
| 38 | 38 |
| 39 #include "sky/engine/wtf/Forward.h" | 39 #include "sky/engine/wtf/Forward.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class Application; | 43 class Application; |
| 44 class CSSRuleList; | |
| 45 class CSSStyleDeclaration; | 44 class CSSStyleDeclaration; |
| 46 class Console; | 45 class Console; |
| 47 class DOMSelection; | 46 class DOMSelection; |
| 48 class DOMURL; | 47 class DOMURL; |
| 49 class DOMWindowCSS; | 48 class DOMWindowCSS; |
| 50 class DOMWindowEventQueue; | 49 class DOMWindowEventQueue; |
| 51 class DOMWindowLifecycleNotifier; | 50 class DOMWindowLifecycleNotifier; |
| 52 class DOMWindowProperty; | 51 class DOMWindowProperty; |
| 53 class Database; | 52 class Database; |
| 54 class DatabaseCallback; | 53 class DatabaseCallback; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 250 |
| 252 mutable RefPtr<DOMWindowCSS> m_css; | 251 mutable RefPtr<DOMWindowCSS> m_css; |
| 253 | 252 |
| 254 RefPtr<DOMWindowEventQueue> m_eventQueue; | 253 RefPtr<DOMWindowEventQueue> m_eventQueue; |
| 255 RefPtr<SerializedScriptValue> m_pendingStateObject; | 254 RefPtr<SerializedScriptValue> m_pendingStateObject; |
| 256 }; | 255 }; |
| 257 | 256 |
| 258 } // namespace blink | 257 } // namespace blink |
| 259 | 258 |
| 260 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ | 259 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ |
| OLD | NEW |