| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 class VisitedLinkState; | 173 class VisitedLinkState; |
| 174 enum class SelectionBehaviorOnFocus; | 174 enum class SelectionBehaviorOnFocus; |
| 175 struct AnnotatedRegionValue; | 175 struct AnnotatedRegionValue; |
| 176 struct FocusParams; | 176 struct FocusParams; |
| 177 struct IconURL; | 177 struct IconURL; |
| 178 | 178 |
| 179 using MouseEventWithHitTestResults = | 179 using MouseEventWithHitTestResults = |
| 180 EventWithHitTestResults<PlatformMouseEvent>; | 180 EventWithHitTestResults<PlatformMouseEvent>; |
| 181 using ExceptionCode = int; | 181 using ExceptionCode = int; |
| 182 | 182 |
| 183 enum StyleResolverUpdateMode { | |
| 184 // Discards the StyleResolver and rebuilds it. | |
| 185 FullStyleUpdate, | |
| 186 // Attempts to use StyleInvalidationAnalysis to avoid discarding the entire | |
| 187 // StyleResolver. | |
| 188 AnalyzedStyleUpdate | |
| 189 }; | |
| 190 | |
| 191 enum NodeListInvalidationType { | 183 enum NodeListInvalidationType { |
| 192 DoNotInvalidateOnAttributeChanges = 0, | 184 DoNotInvalidateOnAttributeChanges = 0, |
| 193 InvalidateOnClassAttrChange, | 185 InvalidateOnClassAttrChange, |
| 194 InvalidateOnIdNameAttrChange, | 186 InvalidateOnIdNameAttrChange, |
| 195 InvalidateOnNameAttrChange, | 187 InvalidateOnNameAttrChange, |
| 196 InvalidateOnForAttrChange, | 188 InvalidateOnForAttrChange, |
| 197 InvalidateForFormControls, | 189 InvalidateForFormControls, |
| 198 InvalidateOnHRefAttrChange, | 190 InvalidateOnHRefAttrChange, |
| 199 InvalidateOnAnyAttrChange, | 191 InvalidateOnAnyAttrChange, |
| 200 }; | 192 }; |
| (...skipping 1516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1717 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1709 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1718 | 1710 |
| 1719 } // namespace blink | 1711 } // namespace blink |
| 1720 | 1712 |
| 1721 #ifndef NDEBUG | 1713 #ifndef NDEBUG |
| 1722 // Outside the WebCore namespace for ease of invocation from gdb. | 1714 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1723 CORE_EXPORT void showLiveDocumentInstances(); | 1715 CORE_EXPORT void showLiveDocumentInstances(); |
| 1724 #endif | 1716 #endif |
| 1725 | 1717 |
| 1726 #endif // Document_h | 1718 #endif // Document_h |
| OLD | NEW |