| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 void initialize(); | 539 void initialize(); |
| 540 virtual void shutdown(); | 540 virtual void shutdown(); |
| 541 | 541 |
| 542 void attachLayoutTree(const AttachContext& = AttachContext()) override { | 542 void attachLayoutTree(const AttachContext& = AttachContext()) override { |
| 543 NOTREACHED(); | 543 NOTREACHED(); |
| 544 } | 544 } |
| 545 void detachLayoutTree(const AttachContext& = AttachContext()) override { | 545 void detachLayoutTree(const AttachContext& = AttachContext()) override { |
| 546 NOTREACHED(); | 546 NOTREACHED(); |
| 547 } | 547 } |
| 548 | 548 |
| 549 // If you have a Document, use layoutView() instead which is faster. | |
| 550 void layoutObject() const = delete; | |
| 551 | |
| 552 LayoutView* layoutView() const { return m_layoutView; } | 549 LayoutView* layoutView() const { return m_layoutView; } |
| 553 LayoutViewItem layoutViewItem() const; | 550 LayoutViewItem layoutViewItem() const; |
| 554 | 551 |
| 555 Document& axObjectCacheOwner() const; | 552 Document& axObjectCacheOwner() const; |
| 556 AXObjectCache* existingAXObjectCache() const; | 553 AXObjectCache* existingAXObjectCache() const; |
| 557 AXObjectCache* axObjectCache() const; | 554 AXObjectCache* axObjectCache() const; |
| 558 void clearAXObjectCache(); | 555 void clearAXObjectCache(); |
| 559 | 556 |
| 560 // to get visually ordered hebrew and arabic pages right | 557 // to get visually ordered hebrew and arabic pages right |
| 561 bool visuallyOrdered() const { return m_visuallyOrdered; } | 558 bool visuallyOrdered() const { return m_visuallyOrdered; } |
| (...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1721 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1718 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1722 | 1719 |
| 1723 } // namespace blink | 1720 } // namespace blink |
| 1724 | 1721 |
| 1725 #ifndef NDEBUG | 1722 #ifndef NDEBUG |
| 1726 // Outside the WebCore namespace for ease of invocation from gdb. | 1723 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1727 CORE_EXPORT void showLiveDocumentInstances(); | 1724 CORE_EXPORT void showLiveDocumentInstances(); |
| 1728 #endif | 1725 #endif |
| 1729 | 1726 |
| 1730 #endif // Document_h | 1727 #endif // Document_h |
| OLD | NEW |