| 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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 | 794 |
| 795 void incDOMTreeVersion() { ASSERT(m_lifecycle.stateAllowsTreeMutations()); m
_domTreeVersion = ++s_globalTreeVersion; } | 795 void incDOMTreeVersion() { ASSERT(m_lifecycle.stateAllowsTreeMutations()); m
_domTreeVersion = ++s_globalTreeVersion; } |
| 796 uint64_t domTreeVersion() const { return m_domTreeVersion; } | 796 uint64_t domTreeVersion() const { return m_domTreeVersion; } |
| 797 | 797 |
| 798 void incStyleVersion() { ++m_styleVersion; } | 798 void incStyleVersion() { ++m_styleVersion; } |
| 799 uint64_t styleVersion() const { return m_styleVersion; } | 799 uint64_t styleVersion() const { return m_styleVersion; } |
| 800 | 800 |
| 801 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe
ets, IgnoreLayoutWithPendingSheets }; | 801 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe
ets, IgnoreLayoutWithPendingSheets }; |
| 802 | 802 |
| 803 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout =
= DidLayoutWithPendingSheets; } | 803 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout =
= DidLayoutWithPendingSheets; } |
| 804 bool ignoreLayoutWithPendingStylesheets() const { return m_pendingSheetLayou
t == IgnoreLayoutWithPendingSheets; } | |
| 805 | 804 |
| 806 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder
Style; } | 805 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder
Style; } |
| 807 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr
ue; } | 806 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr
ue; } |
| 808 | 807 |
| 809 Vector<IconURL> iconURLs(int iconTypesMask); | 808 Vector<IconURL> iconURLs(int iconTypesMask); |
| 810 | 809 |
| 811 Color themeColor() const; | 810 Color themeColor() const; |
| 812 | 811 |
| 813 // Returns the HTMLLinkElement currently in use for the Web Manifest. | 812 // Returns the HTMLLinkElement currently in use for the Web Manifest. |
| 814 // Returns null if there is no such element. | 813 // Returns null if there is no such element. |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1438 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1440 | 1439 |
| 1441 } // namespace blink | 1440 } // namespace blink |
| 1442 | 1441 |
| 1443 #ifndef NDEBUG | 1442 #ifndef NDEBUG |
| 1444 // Outside the WebCore namespace for ease of invocation from gdb. | 1443 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1445 CORE_EXPORT void showLiveDocumentInstances(); | 1444 CORE_EXPORT void showLiveDocumentInstances(); |
| 1446 #endif | 1445 #endif |
| 1447 | 1446 |
| 1448 #endif // Document_h | 1447 #endif // Document_h |
| OLD | NEW |