| 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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 bool isUserActionElementActive() const; | 915 bool isUserActionElementActive() const; |
| 916 bool isUserActionElementInActiveChain() const; | 916 bool isUserActionElementInActiveChain() const; |
| 917 bool isUserActionElementDragged() const; | 917 bool isUserActionElementDragged() const; |
| 918 bool isUserActionElementHovered() const; | 918 bool isUserActionElementHovered() const; |
| 919 bool isUserActionElementFocused() const; | 919 bool isUserActionElementFocused() const; |
| 920 | 920 |
| 921 void recalcDistribution(); | 921 void recalcDistribution(); |
| 922 | 922 |
| 923 void setStyleChange(StyleChangeType); | 923 void setStyleChange(StyleChangeType); |
| 924 | 924 |
| 925 virtual ComputedStyle* nonLayoutObjectComputedStyle() const { | |
| 926 return nullptr; | |
| 927 } | |
| 928 | |
| 929 virtual const ComputedStyle* virtualEnsureComputedStyle( | 925 virtual const ComputedStyle* virtualEnsureComputedStyle( |
| 930 PseudoId = PseudoIdNone); | 926 PseudoId = PseudoIdNone); |
| 931 | 927 |
| 932 void trackForDebugging(); | 928 void trackForDebugging(); |
| 933 | 929 |
| 934 const HeapVector<TraceWrapperMember<MutationObserverRegistration>>* | 930 const HeapVector<TraceWrapperMember<MutationObserverRegistration>>* |
| 935 mutationObserverRegistry(); | 931 mutationObserverRegistry(); |
| 936 const HeapHashSet<TraceWrapperMember<MutationObserverRegistration>>* | 932 const HeapHashSet<TraceWrapperMember<MutationObserverRegistration>>* |
| 937 transientMutationObserverRegistry(); | 933 transientMutationObserverRegistry(); |
| 938 | 934 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 } // namespace blink | 1016 } // namespace blink |
| 1021 | 1017 |
| 1022 #ifndef NDEBUG | 1018 #ifndef NDEBUG |
| 1023 // Outside the WebCore namespace for ease of invocation from gdb. | 1019 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1024 void showNode(const blink::Node*); | 1020 void showNode(const blink::Node*); |
| 1025 void showTree(const blink::Node*); | 1021 void showTree(const blink::Node*); |
| 1026 void showNodePath(const blink::Node*); | 1022 void showNodePath(const blink::Node*); |
| 1027 #endif | 1023 #endif |
| 1028 | 1024 |
| 1029 #endif // Node_h | 1025 #endif // Node_h |
| OLD | NEW |