| 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 16 matching lines...) Expand all Loading... |
| 59 #include "platform/WebTaskRunner.h" | 60 #include "platform/WebTaskRunner.h" |
| 60 #include "platform/loader/fetch/ClientHintsPreferences.h" | 61 #include "platform/loader/fetch/ClientHintsPreferences.h" |
| 61 #include "platform/scroll/ScrollTypes.h" | 62 #include "platform/scroll/ScrollTypes.h" |
| 62 #include "platform/weborigin/KURL.h" | 63 #include "platform/weborigin/KURL.h" |
| 63 #include "platform/weborigin/ReferrerPolicy.h" | 64 #include "platform/weborigin/ReferrerPolicy.h" |
| 64 #include "public/platform/WebFocusType.h" | 65 #include "public/platform/WebFocusType.h" |
| 65 #include "public/platform/WebInsecureRequestPolicy.h" | 66 #include "public/platform/WebInsecureRequestPolicy.h" |
| 66 #include "wtf/Compiler.h" | 67 #include "wtf/Compiler.h" |
| 67 #include "wtf/HashSet.h" | 68 #include "wtf/HashSet.h" |
| 68 #include "wtf/PassRefPtr.h" | 69 #include "wtf/PassRefPtr.h" |
| 69 #include <memory> | |
| 70 | 70 |
| 71 namespace blink { | 71 namespace blink { |
| 72 | 72 |
| 73 namespace mojom { | 73 namespace mojom { |
| 74 enum class EngagementLevel : int32_t; | 74 enum class EngagementLevel : int32_t; |
| 75 } | 75 } |
| 76 | 76 |
| 77 class AnimationClock; | 77 class AnimationClock; |
| 78 class DocumentTimeline; | 78 class DocumentTimeline; |
| 79 class AXObjectCache; | 79 class AXObjectCache; |
| (...skipping 1641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1721 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1721 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1722 | 1722 |
| 1723 } // namespace blink | 1723 } // namespace blink |
| 1724 | 1724 |
| 1725 #ifndef NDEBUG | 1725 #ifndef NDEBUG |
| 1726 // Outside the WebCore namespace for ease of invocation from gdb. | 1726 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1727 CORE_EXPORT void showLiveDocumentInstances(); | 1727 CORE_EXPORT void showLiveDocumentInstances(); |
| 1728 #endif | 1728 #endif |
| 1729 | 1729 |
| 1730 #endif // Document_h | 1730 #endif // Document_h |
| OLD | NEW |