Chromium Code Reviews| Index: src/zone.h |
| =================================================================== |
| --- src/zone.h (revision 918) |
| +++ src/zone.h (working copy) |
| @@ -74,6 +74,9 @@ |
| // Never allocate segments smaller than this size in bytes. |
| static const int kMinimumSegmentSize = 8 * KB; |
| + |
| + // Never allocate segments larger than this size in bytes. |
| + static const int kMaximumSegmentSize = 1 * MB; |
| // Never keep segments larger than this size in bytes around. |
| static const int kMaximumKeptSegmentSize = 64 * KB; |