| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "gpu/ipc/common/memory_stats.h" | |
| 6 | |
| 7 namespace gpu { | |
| 8 | |
| 9 VideoMemoryUsageStats::VideoMemoryUsageStats() | |
| 10 : bytes_allocated(0), bytes_allocated_historical_max(0) {} | |
| 11 | |
| 12 VideoMemoryUsageStats::~VideoMemoryUsageStats() {} | |
| 13 | |
| 14 VideoMemoryUsageStats::ProcessStats::ProcessStats() | |
| 15 : video_memory(0), has_duplicates(false) {} | |
| 16 | |
| 17 VideoMemoryUsageStats::ProcessStats::~ProcessStats() {} | |
| 18 | |
| 19 } // namespace gpu | |
| OLD | NEW |