| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 void setFlags(Node* node, bool enable, unsigned flags) { enable ? setFlags(n
ode, flags) : clearFlags(node, flags); } | 71 void setFlags(Node* node, bool enable, unsigned flags) { enable ? setFlags(n
ode, flags) : clearFlags(node, flags); } |
| 72 void setFlags(Node*, unsigned); | 72 void setFlags(Node*, unsigned); |
| 73 void clearFlags(Node*, unsigned); | 73 void clearFlags(Node*, unsigned); |
| 74 bool hasFlags(const Node*, unsigned flags) const; | 74 bool hasFlags(const Node*, unsigned flags) const; |
| 75 | 75 |
| 76 void setFlags(Element*, unsigned); | 76 void setFlags(Element*, unsigned); |
| 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 HeapHashMap<Member<Element>, unsigned> ElementFlagMap; |
| 81 ElementFlagMap m_elements; | 81 ElementFlagMap m_elements; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace blink | 84 } // namespace blink |
| 85 | 85 |
| 86 #endif // UserActionElementSet_h | 86 #endif // UserActionElementSet_h |
| OLD | NEW |