| 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 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 7 * (http://www.torchmobile.com/) | 7 * (http://www.torchmobile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 bool isUserActionElementActive() const; | 914 bool isUserActionElementActive() const; |
| 915 bool isUserActionElementInActiveChain() const; | 915 bool isUserActionElementInActiveChain() const; |
| 916 bool isUserActionElementDragged() const; | 916 bool isUserActionElementDragged() const; |
| 917 bool isUserActionElementHovered() const; | 917 bool isUserActionElementHovered() const; |
| 918 bool isUserActionElementFocused() const; | 918 bool isUserActionElementFocused() const; |
| 919 | 919 |
| 920 void recalcDistribution(); | 920 void recalcDistribution(); |
| 921 | 921 |
| 922 void setStyleChange(StyleChangeType); | 922 void setStyleChange(StyleChangeType); |
| 923 | 923 |
| 924 virtual ComputedStyle* nonLayoutObjectComputedStyle() const { | |
| 925 return nullptr; | |
| 926 } | |
| 927 | |
| 928 virtual const ComputedStyle* virtualEnsureComputedStyle( | 924 virtual const ComputedStyle* virtualEnsureComputedStyle( |
| 929 PseudoId = PseudoIdNone); | 925 PseudoId = PseudoIdNone); |
| 930 | 926 |
| 931 void trackForDebugging(); | 927 void trackForDebugging(); |
| 932 | 928 |
| 933 const HeapVector<TraceWrapperMember<MutationObserverRegistration>>* | 929 const HeapVector<TraceWrapperMember<MutationObserverRegistration>>* |
| 934 mutationObserverRegistry(); | 930 mutationObserverRegistry(); |
| 935 const HeapHashSet<TraceWrapperMember<MutationObserverRegistration>>* | 931 const HeapHashSet<TraceWrapperMember<MutationObserverRegistration>>* |
| 936 transientMutationObserverRegistry(); | 932 transientMutationObserverRegistry(); |
| 937 | 933 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 } // namespace blink | 1015 } // namespace blink |
| 1020 | 1016 |
| 1021 #ifndef NDEBUG | 1017 #ifndef NDEBUG |
| 1022 // Outside the WebCore namespace for ease of invocation from gdb. | 1018 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1023 void showNode(const blink::Node*); | 1019 void showNode(const blink::Node*); |
| 1024 void showTree(const blink::Node*); | 1020 void showTree(const blink::Node*); |
| 1025 void showNodePath(const blink::Node*); | 1021 void showNodePath(const blink::Node*); |
| 1026 #endif | 1022 #endif |
| 1027 | 1023 |
| 1028 #endif // Node_h | 1024 #endif // Node_h |
| OLD | NEW |