Index: third_party/WebKit/Source/wtf/PartitionAlloc.h |
diff --git a/third_party/WebKit/Source/wtf/PartitionAlloc.h b/third_party/WebKit/Source/wtf/PartitionAlloc.h |
index be186ee833c90808ea794ea3d1db8547d0498c81..7462c1410198e88776ac1e668c9573a0a3d2db8e 100644 |
--- a/third_party/WebKit/Source/wtf/PartitionAlloc.h |
+++ b/third_party/WebKit/Source/wtf/PartitionAlloc.h |
@@ -259,8 +259,8 @@ struct PartitionBucket { |
PartitionPage* emptyPagesHead; |
PartitionPage* decommittedPagesHead; |
uint32_t slotSize; |
- uint16_t numSystemPagesPerSlotSpan; |
- uint16_t numFullPages; |
+ unsigned numSystemPagesPerSlotSpan : 8; |
bashi
2016/01/26 23:52:37
uint32_t ?
haraken
2016/01/27 01:19:32
The style checker asks us to use unsigned for a bi
|
+ unsigned numFullPages : 24; |
bashi
2016/01/26 23:52:37
ditto.
|
}; |
// An "extent" is a span of consecutive superpages. We link to the partition's |