| 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 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 | 1369 |
| 1370 void beginLifecycleUpdatesIfRenderingReady(); | 1370 void beginLifecycleUpdatesIfRenderingReady(); |
| 1371 | 1371 |
| 1372 bool isDocument() const final { return true; } | 1372 bool isDocument() const final { return true; } |
| 1373 | 1373 |
| 1374 void childrenChanged(const ChildrenChange&) override; | 1374 void childrenChanged(const ChildrenChange&) override; |
| 1375 | 1375 |
| 1376 String nodeName() const final; | 1376 String nodeName() const final; |
| 1377 NodeType getNodeType() const final; | 1377 NodeType getNodeType() const final; |
| 1378 bool childTypeAllowed(NodeType) const final; | 1378 bool childTypeAllowed(NodeType) const final; |
| 1379 Node* cloneNode(bool deep) final; | 1379 Node* cloneNode(bool deep, ExceptionState&) final; |
| 1380 void cloneDataFromDocument(const Document&); | 1380 void cloneDataFromDocument(const Document&); |
| 1381 bool isSecureContextImpl( | 1381 bool isSecureContextImpl( |
| 1382 const SecureContextCheck priviligeContextCheck) const; | 1382 const SecureContextCheck priviligeContextCheck) const; |
| 1383 | 1383 |
| 1384 ShadowCascadeOrder m_shadowCascadeOrder = ShadowCascadeNone; | 1384 ShadowCascadeOrder m_shadowCascadeOrder = ShadowCascadeNone; |
| 1385 | 1385 |
| 1386 // Same as url(), but needed for ExecutionContext to implement it without a | 1386 // Same as url(), but needed for ExecutionContext to implement it without a |
| 1387 // performance loss for direct calls. | 1387 // performance loss for direct calls. |
| 1388 const KURL& virtualURL() const final; | 1388 const KURL& virtualURL() const final; |
| 1389 // Same as completeURL() for the same reason as above. | 1389 // Same as completeURL() for the same reason as above. |
| (...skipping 331 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 |