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 r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 #if !ENABLE(OILPAN) | 1066 #if !ENABLE(OILPAN) |
1067 virtual void dispose() override; | 1067 virtual void dispose() override; |
1068 #endif | 1068 #endif |
1069 | 1069 |
1070 virtual PassRefPtrWillBeRawPtr<Document> cloneDocumentWithoutChildren(); | 1070 virtual PassRefPtrWillBeRawPtr<Document> cloneDocumentWithoutChildren(); |
1071 | 1071 |
1072 bool importContainerNodeChildren(ContainerNode* oldContainerNode, PassRefPtr
WillBeRawPtr<ContainerNode> newContainerNode, ExceptionState&); | 1072 bool importContainerNodeChildren(ContainerNode* oldContainerNode, PassRefPtr
WillBeRawPtr<ContainerNode> newContainerNode, ExceptionState&); |
1073 void lockCompatibilityMode() { m_compatibilityModeLocked = true; } | 1073 void lockCompatibilityMode() { m_compatibilityModeLocked = true; } |
1074 | 1074 |
1075 private: | 1075 private: |
1076 friend class Node; | |
1077 friend class IgnoreDestructiveWriteCountIncrementer; | 1076 friend class IgnoreDestructiveWriteCountIncrementer; |
1078 | 1077 |
1079 bool isDocumentFragment() const = delete; // This will catch anyone doing an
unnecessary check. | 1078 bool isDocumentFragment() const = delete; // This will catch anyone doing an
unnecessary check. |
1080 bool isDocumentNode() const = delete; // This will catch anyone doing an unn
ecessary check. | 1079 bool isDocumentNode() const = delete; // This will catch anyone doing an unn
ecessary check. |
1081 bool isElementNode() const = delete; // This will catch anyone doing an unne
cessary check. | 1080 bool isElementNode() const = delete; // This will catch anyone doing an unne
cessary check. |
1082 | 1081 |
1083 ScriptedAnimationController& ensureScriptedAnimationController(); | 1082 ScriptedAnimationController& ensureScriptedAnimationController(); |
1084 virtual SecurityContext& securityContext() override final { return *this; } | 1083 virtual SecurityContext& securityContext() override final { return *this; } |
1085 virtual EventQueue* eventQueue() const override final; | 1084 virtual EventQueue* eventQueue() const override final; |
1086 | 1085 |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1425 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1424 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
1426 | 1425 |
1427 } // namespace blink | 1426 } // namespace blink |
1428 | 1427 |
1429 #ifndef NDEBUG | 1428 #ifndef NDEBUG |
1430 // Outside the WebCore namespace for ease of invocation from gdb. | 1429 // Outside the WebCore namespace for ease of invocation from gdb. |
1431 void showLiveDocumentInstances(); | 1430 void showLiveDocumentInstances(); |
1432 #endif | 1431 #endif |
1433 | 1432 |
1434 #endif // Document_h | 1433 #endif // Document_h |
OLD | NEW |