Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: Source/core/dom/ElementData.cpp

Issue 792083006: replace COMPILE_ASSERT with static_assert in core/dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698