| 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 28 matching lines...) Expand all Loading... |
| 39 #include "wtf/Forward.h" | 39 #include "wtf/Forward.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class ApplicationCache; | 43 class ApplicationCache; |
| 44 class BarProp; | 44 class BarProp; |
| 45 class CSSRuleList; | 45 class CSSRuleList; |
| 46 class CSSStyleDeclaration; | 46 class CSSStyleDeclaration; |
| 47 class Console; | 47 class Console; |
| 48 class DOMSelection; | 48 class DOMSelection; |
| 49 class DOMURL; | |
| 50 class DOMWindowCSS; | 49 class DOMWindowCSS; |
| 51 class DOMWindowEventQueue; | 50 class DOMWindowEventQueue; |
| 52 class DOMWindowLifecycleNotifier; | 51 class DOMWindowLifecycleNotifier; |
| 53 class DOMWindowProperty; | 52 class DOMWindowProperty; |
| 54 class Database; | |
| 55 class DatabaseCallback; | |
| 56 class Document; | 53 class Document; |
| 57 class DocumentInit; | 54 class DocumentInit; |
| 58 class Element; | 55 class Element; |
| 59 class EventListener; | 56 class EventListener; |
| 60 class EventQueue; | 57 class EventQueue; |
| 61 class ExceptionState; | 58 class ExceptionState; |
| 62 class FloatRect; | 59 class FloatRect; |
| 63 class FrameConsole; | 60 class FrameConsole; |
| 64 class History; | 61 class History; |
| 65 class IDBFactory; | |
| 66 class LocalFrame; | 62 class LocalFrame; |
| 67 class Location; | 63 class Location; |
| 68 class MediaQueryList; | 64 class MediaQueryList; |
| 69 class MessageEvent; | |
| 70 class Navigator; | 65 class Navigator; |
| 71 class Node; | |
| 72 class Page; | 66 class Page; |
| 73 class Performance; | 67 class Performance; |
| 74 class PostMessageTimer; | 68 class PostMessageTimer; |
| 75 class RequestAnimationFrameCallback; | 69 class RequestAnimationFrameCallback; |
| 76 class ScheduledAction; | |
| 77 class Screen; | 70 class Screen; |
| 78 class ScriptCallStack; | 71 class ScriptCallStack; |
| 79 class SecurityOrigin; | 72 class SecurityOrigin; |
| 80 class SerializedScriptValue; | 73 class SerializedScriptValue; |
| 81 class Storage; | 74 class Storage; |
| 82 class StyleMedia; | 75 class StyleMedia; |
| 83 | 76 |
| 84 struct WindowFeatures; | |
| 85 | |
| 86 typedef WillBeHeapVector<RefPtrWillBeMember<MessagePort>, 1> MessagePortArray; | 77 typedef WillBeHeapVector<RefPtrWillBeMember<MessagePort>, 1> MessagePortArray; |
| 87 | 78 |
| 88 enum PageshowEventPersistence { | 79 enum PageshowEventPersistence { |
| 89 PageshowEventNotPersisted = 0, | 80 PageshowEventNotPersisted = 0, |
| 90 PageshowEventPersisted = 1 | 81 PageshowEventPersisted = 1 |
| 91 }; | 82 }; |
| 92 | 83 |
| 93 enum SetLocationLocking { LockHistoryBasedOnGestureState, LockHistoryAndBackForw
ardList }; | 84 enum SetLocationLocking { LockHistoryBasedOnGestureState, LockHistoryAndBackForw
ardList }; |
| 94 | 85 |
| 95 class LocalDOMWindow FINAL : public RefCountedWillBeGarbageCollectedFinalized<Lo
calDOMWindow>, public EventTargetWithInlineData, public DOMWindowBase64, public
FrameDestructionObserver, public WillBeHeapSupplementable<LocalDOMWindow>, publi
c LifecycleContext<LocalDOMWindow> { | 86 class LocalDOMWindow FINAL : public RefCountedWillBeGarbageCollectedFinalized<Lo
calDOMWindow>, public EventTargetWithInlineData, public DOMWindowBase64, public
FrameDestructionObserver, public WillBeHeapSupplementable<LocalDOMWindow>, publi
c LifecycleContext<LocalDOMWindow> { |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 } | 395 } |
| 405 | 396 |
| 406 inline String LocalDOMWindow::defaultStatus() const | 397 inline String LocalDOMWindow::defaultStatus() const |
| 407 { | 398 { |
| 408 return m_defaultStatus; | 399 return m_defaultStatus; |
| 409 } | 400 } |
| 410 | 401 |
| 411 } // namespace blink | 402 } // namespace blink |
| 412 | 403 |
| 413 #endif // LocalDOMWindow_h | 404 #endif // LocalDOMWindow_h |
| OLD | NEW |