| 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 42c394135d807b69b3110144d96dd3c48d460f62..cf9e7cfffe98a92f3e1bb0e7b0a25d318fc92db5 100644
|
| --- a/content/common/gpu/gpu_memory_manager_unittest.cc
|
| +++ b/content/common/gpu/gpu_memory_manager_unittest.cc
|
| @@ -11,7 +11,6 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| using gpu::MemoryAllocation;
|
| -using gpu::ManagedMemoryStats;
|
|
|
| #if defined(COMPILER_GCC)
|
| namespace BASE_HASH_NAMESPACE {
|
| @@ -150,10 +149,6 @@ class FakeClient : public GpuMemoryManagerClient {
|
| client_state_->SetVisible(visible);
|
| }
|
|
|
| - void SetManagedMemoryStats(const ManagedMemoryStats& stats) {
|
| - client_state_->SetManagedMemoryStats(stats);
|
| - }
|
| -
|
| uint64 BytesWhenVisible() const {
|
| return allocation_.bytes_limit_when_visible;
|
| }
|
| @@ -206,14 +201,6 @@ class GpuMemoryManagerTest : public testing::Test {
|
| memmgr_.Manage();
|
| }
|
|
|
| - void SetClientStats(
|
| - FakeClient* client,
|
| - uint64 required,
|
| - uint64 nicetohave) {
|
| - client->SetManagedMemoryStats(
|
| - ManagedMemoryStats(required, nicetohave, 0, false));
|
| - }
|
| -
|
| GpuMemoryManager memmgr_;
|
| };
|
|
|
|
|