| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 bool isInActiveChain(const Node* node) { return hasFlags(node, InActiveChain
Flag); } | 45 bool isInActiveChain(const Node* node) { return hasFlags(node, InActiveChain
Flag); } |
| 46 bool isHovered(const Node* node) { return hasFlags(node, IsHoveredFlag); } | 46 bool isHovered(const Node* node) { return hasFlags(node, IsHoveredFlag); } |
| 47 void setFocused(Node* node, bool enable) { setFlags(node, enable, IsFocusedF
lag); } | 47 void setFocused(Node* node, bool enable) { setFlags(node, enable, IsFocusedF
lag); } |
| 48 void setActive(Node* node, bool enable) { setFlags(node, enable, IsActiveFla
g); } | 48 void setActive(Node* node, bool enable) { setFlags(node, enable, IsActiveFla
g); } |
| 49 void setInActiveChain(Node* node, bool enable) { setFlags(node, enable, InAc
tiveChainFlag); } | 49 void setInActiveChain(Node* node, bool enable) { setFlags(node, enable, InAc
tiveChainFlag); } |
| 50 void setHovered(Node* node, bool enable) { setFlags(node, enable, IsHoveredF
lag); } | 50 void setHovered(Node* node, bool enable) { setFlags(node, enable, IsHoveredF
lag); } |
| 51 | 51 |
| 52 UserActionElementSet(); | 52 UserActionElementSet(); |
| 53 ~UserActionElementSet(); | 53 ~UserActionElementSet(); |
| 54 | 54 |
| 55 void didDetach(Node*); | 55 void didDetach(Element&); |
| 56 | 56 |
| 57 #if !ENABLE(OILPAN) | 57 #if !ENABLE(OILPAN) |
| 58 void documentDidRemoveLastRef(); | 58 void documentDidRemoveLastRef(); |
| 59 #endif | 59 #endif |
| 60 | 60 |
| 61 DECLARE_TRACE(); | 61 DECLARE_TRACE(); |
| 62 | 62 |
| 63 private: | 63 private: |
| 64 enum ElementFlags { | 64 enum ElementFlags { |
| 65 IsActiveFlag = 1 , | 65 IsActiveFlag = 1 , |
| (...skipping 11 matching lines...) Expand all Loading... |
| 77 void clearFlags(Element*, unsigned); | 77 void clearFlags(Element*, unsigned); |
| 78 bool hasFlags(const Element*, unsigned flags) const; | 78 bool hasFlags(const Element*, unsigned flags) const; |
| 79 | 79 |
| 80 typedef WillBeHeapHashMap<RefPtrWillBeMember<Element>, unsigned> ElementFlag
Map; | 80 typedef WillBeHeapHashMap<RefPtrWillBeMember<Element>, unsigned> ElementFlag
Map; |
| 81 ElementFlagMap m_elements; | 81 ElementFlagMap m_elements; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace | 84 } // namespace |
| 85 | 85 |
| 86 #endif // UserActionElementSet_h | 86 #endif // UserActionElementSet_h |
| OLD | NEW |