| Index: src/compilation-statistics.h
|
| diff --git a/src/compilation-statistics.h b/src/compilation-statistics.h
|
| index 62fefe3d732a6c2c3e357cc3730428e426801055..45ffb9b8231cbc6e4b470aafb1cbfd2acd34b07c 100644
|
| --- a/src/compilation-statistics.h
|
| +++ b/src/compilation-statistics.h
|
| @@ -22,13 +22,17 @@ class CompilationStatistics FINAL : public Malloced {
|
|
|
| class BasicStats {
|
| public:
|
| - BasicStats() : total_allocated_bytes_(0), max_allocated_bytes_(0) {}
|
| + BasicStats()
|
| + : total_allocated_bytes_(0),
|
| + max_allocated_bytes_(0),
|
| + absolute_max_allocated_bytes_(0) {}
|
|
|
| void Accumulate(const BasicStats& stats);
|
|
|
| base::TimeDelta delta_;
|
| size_t total_allocated_bytes_;
|
| size_t max_allocated_bytes_;
|
| + size_t absolute_max_allocated_bytes_;
|
| std::string function_name_;
|
| };
|
|
|
|
|