| 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 void initialize(); | 525 void initialize(); |
| 526 virtual void shutdown(); | 526 virtual void shutdown(); |
| 527 | 527 |
| 528 void attachLayoutTree(const AttachContext& = AttachContext()) override { | 528 void attachLayoutTree(const AttachContext& = AttachContext()) override { |
| 529 NOTREACHED(); | 529 NOTREACHED(); |
| 530 } | 530 } |
| 531 void detachLayoutTree(const AttachContext& = AttachContext()) override { | 531 void detachLayoutTree(const AttachContext& = AttachContext()) override { |
| 532 NOTREACHED(); | 532 NOTREACHED(); |
| 533 } | 533 } |
| 534 | 534 |
| 535 // If you have a Document, use layoutView() instead which is faster. | |
| 536 void layoutObject() const = delete; | |
| 537 | |
| 538 LayoutView* layoutView() const { return m_layoutView; } | 535 LayoutView* layoutView() const { return m_layoutView; } |
| 539 LayoutViewItem layoutViewItem() const; | 536 LayoutViewItem layoutViewItem() const; |
| 540 | 537 |
| 541 Document& axObjectCacheOwner() const; | 538 Document& axObjectCacheOwner() const; |
| 542 AXObjectCache* existingAXObjectCache() const; | 539 AXObjectCache* existingAXObjectCache() const; |
| 543 AXObjectCache* axObjectCache() const; | 540 AXObjectCache* axObjectCache() const; |
| 544 void clearAXObjectCache(); | 541 void clearAXObjectCache(); |
| 545 | 542 |
| 546 // to get visually ordered hebrew and arabic pages right | 543 // to get visually ordered hebrew and arabic pages right |
| 547 bool visuallyOrdered() const { return m_visuallyOrdered; } | 544 bool visuallyOrdered() const { return m_visuallyOrdered; } |
| (...skipping 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1712 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1709 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1713 | 1710 |
| 1714 } // namespace blink | 1711 } // namespace blink |
| 1715 | 1712 |
| 1716 #ifndef NDEBUG | 1713 #ifndef NDEBUG |
| 1717 // Outside the WebCore namespace for ease of invocation from gdb. | 1714 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1718 CORE_EXPORT void showLiveDocumentInstances(); | 1715 CORE_EXPORT void showLiveDocumentInstances(); |
| 1719 #endif | 1716 #endif |
| 1720 | 1717 |
| 1721 #endif // Document_h | 1718 #endif // Document_h |
| OLD | NEW |