| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "core/dom/QualifiedName.h" | 35 #include "core/dom/QualifiedName.h" |
| 36 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 struct SameSizeAsElementData : public RefCountedWillBeGarbageCollectedFinalized<
SameSizeAsElementData> { | 40 struct SameSizeAsElementData : public RefCountedWillBeGarbageCollectedFinalized<
SameSizeAsElementData> { |
| 41 unsigned bitfield; | 41 unsigned bitfield; |
| 42 void* pointers[3]; | 42 void* pointers[3]; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 COMPILE_ASSERT(sizeof(ElementData) == sizeof(SameSizeAsElementData), element_att
ribute_data_should_stay_small); | 45 static_assert(sizeof(ElementData) == sizeof(SameSizeAsElementData), "ElementData
should stay small"); |
| 46 | 46 |
| 47 static size_t sizeForShareableElementDataWithAttributeCount(unsigned count) | 47 static size_t sizeForShareableElementDataWithAttributeCount(unsigned count) |
| 48 { | 48 { |
| 49 return sizeof(ShareableElementData) + sizeof(Attribute) * count; | 49 return sizeof(ShareableElementData) + sizeof(Attribute) * count; |
| 50 } | 50 } |
| 51 | 51 |
| 52 ElementData::ElementData() | 52 ElementData::ElementData() |
| 53 : m_isUnique(true) | 53 : m_isUnique(true) |
| 54 , m_arraySize(0) | 54 , m_arraySize(0) |
| 55 , m_presentationAttributeStyleIsDirty(false) | 55 , m_presentationAttributeStyleIsDirty(false) |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 return adoptRefWillBeNoop(new (slot) ShareableElementData(*this)); | 212 return adoptRefWillBeNoop(new (slot) ShareableElementData(*this)); |
| 213 } | 213 } |
| 214 | 214 |
| 215 void UniqueElementData::traceAfterDispatch(Visitor* visitor) | 215 void UniqueElementData::traceAfterDispatch(Visitor* visitor) |
| 216 { | 216 { |
| 217 visitor->trace(m_presentationAttributeStyle); | 217 visitor->trace(m_presentationAttributeStyle); |
| 218 ElementData::traceAfterDispatch(visitor); | 218 ElementData::traceAfterDispatch(visitor); |
| 219 } | 219 } |
| 220 | 220 |
| 221 } // namespace blink | 221 } // namespace blink |
| OLD | NEW |