| Index: content/common/gpu/gpu_memory_manager_unittest.cc
|
| diff --git a/content/common/gpu/gpu_memory_manager_unittest.cc b/content/common/gpu/gpu_memory_manager_unittest.cc
|
| index 6a8686cab7efc493c49b8a17ee05d21e4c9a8996..5d54d544a83ca6979404e239f570bde06d292bb5 100644
|
| --- a/content/common/gpu/gpu_memory_manager_unittest.cc
|
| +++ b/content/common/gpu/gpu_memory_manager_unittest.cc
|
| @@ -23,10 +23,13 @@ struct hash<content::GpuMemoryManagerClient*> {
|
|
|
| class FakeMemoryTracker : public gpu::gles2::MemoryTracker {
|
| public:
|
| - void TrackMemoryAllocatedChange(
|
| - size_t old_size,
|
| - size_t new_size,
|
| - gpu::gles2::MemoryTracker::Pool pool) {
|
| + virtual void TrackMemoryAllocatedChange(
|
| + size_t /* old_size */,
|
| + size_t /* new_size */,
|
| + gpu::gles2::MemoryTracker::Pool /* pool */) {
|
| + }
|
| + virtual bool EnsureGPUMemoryAvailable(size_t /* size_needed */) {
|
| + return true;
|
| }
|
| private:
|
| ~FakeMemoryTracker() {
|
|
|