| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * You should have received a copy of the GNU Library General Public License | 23 * You should have received a copy of the GNU Library General Public License |
| 24 * along with this library; see the file COPYING.LIB. If not, write to | 24 * along with this library; see the file COPYING.LIB. If not, write to |
| 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 26 * Boston, MA 02110-1301, USA. | 26 * Boston, MA 02110-1301, USA. |
| 27 * | 27 * |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef Document_h | 30 #ifndef Document_h |
| 31 #define Document_h | 31 #define Document_h |
| 32 | 32 |
| 33 #include <memory> |
| 33 #include "bindings/core/v8/ExceptionState.h" | 34 #include "bindings/core/v8/ExceptionState.h" |
| 34 #include "bindings/core/v8/ScriptValue.h" | 35 #include "bindings/core/v8/ScriptValue.h" |
| 35 #include "bindings/core/v8/TraceWrapperMember.h" | 36 #include "bindings/core/v8/TraceWrapperMember.h" |
| 36 #include "core/CoreExport.h" | 37 #include "core/CoreExport.h" |
| 37 #include "core/dom/ContainerNode.h" | 38 #include "core/dom/ContainerNode.h" |
| 38 #include "core/dom/DocumentEncodingData.h" | 39 #include "core/dom/DocumentEncodingData.h" |
| 39 #include "core/dom/DocumentInit.h" | 40 #include "core/dom/DocumentInit.h" |
| 40 #include "core/dom/DocumentLifecycle.h" | 41 #include "core/dom/DocumentLifecycle.h" |
| 41 #include "core/dom/DocumentTiming.h" | 42 #include "core/dom/DocumentTiming.h" |
| 42 #include "core/dom/ExecutionContext.h" | 43 #include "core/dom/ExecutionContext.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 53 #include "core/frame/HostsUsingFeatures.h" | 54 #include "core/frame/HostsUsingFeatures.h" |
| 54 #include "core/html/parser/ParserSynchronizationPolicy.h" | 55 #include "core/html/parser/ParserSynchronizationPolicy.h" |
| 55 #include "core/page/PageVisibilityState.h" | 56 #include "core/page/PageVisibilityState.h" |
| 56 #include "platform/Length.h" | 57 #include "platform/Length.h" |
| 57 #include "platform/Timer.h" | 58 #include "platform/Timer.h" |
| 58 #include "platform/WebTaskRunner.h" | 59 #include "platform/WebTaskRunner.h" |
| 59 #include "platform/loader/fetch/ClientHintsPreferences.h" | 60 #include "platform/loader/fetch/ClientHintsPreferences.h" |
| 60 #include "platform/scroll/ScrollTypes.h" | 61 #include "platform/scroll/ScrollTypes.h" |
| 61 #include "platform/weborigin/KURL.h" | 62 #include "platform/weborigin/KURL.h" |
| 62 #include "platform/weborigin/ReferrerPolicy.h" | 63 #include "platform/weborigin/ReferrerPolicy.h" |
| 64 #include "platform/wtf/HashSet.h" |
| 65 #include "platform/wtf/PassRefPtr.h" |
| 63 #include "public/platform/WebFocusType.h" | 66 #include "public/platform/WebFocusType.h" |
| 64 #include "public/platform/WebInsecureRequestPolicy.h" | 67 #include "public/platform/WebInsecureRequestPolicy.h" |
| 65 #include "wtf/HashSet.h" | |
| 66 #include "wtf/PassRefPtr.h" | |
| 67 #include <memory> | |
| 68 | 68 |
| 69 namespace blink { | 69 namespace blink { |
| 70 | 70 |
| 71 namespace mojom { | 71 namespace mojom { |
| 72 enum class EngagementLevel : int32_t; | 72 enum class EngagementLevel : int32_t; |
| 73 } | 73 } |
| 74 | 74 |
| 75 class AnimationClock; | 75 class AnimationClock; |
| 76 class DocumentTimeline; | 76 class DocumentTimeline; |
| 77 class AXObjectCache; | 77 class AXObjectCache; |
| (...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1725 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1726 | 1726 |
| 1727 } // namespace blink | 1727 } // namespace blink |
| 1728 | 1728 |
| 1729 #ifndef NDEBUG | 1729 #ifndef NDEBUG |
| 1730 // Outside the WebCore namespace for ease of invocation from gdb. | 1730 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1731 CORE_EXPORT void showLiveDocumentInstances(); | 1731 CORE_EXPORT void showLiveDocumentInstances(); |
| 1732 #endif | 1732 #endif |
| 1733 | 1733 |
| 1734 #endif // Document_h | 1734 #endif // Document_h |
| OLD | NEW |