| Index: chrome/browser/extensions/api/system_info_memory/system_info_memory_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/system_info_memory/system_info_memory_apitest.cc b/chrome/browser/extensions/api/system_info_memory/system_info_memory_apitest.cc
|
| index a101640f71c5178b1e9ca0f51b1826d03329dfc8..8170b1fdd308009af1b37c238a91a002090f0a4c 100644
|
| --- a/chrome/browser/extensions/api/system_info_memory/system_info_memory_apitest.cc
|
| +++ b/chrome/browser/extensions/api/system_info_memory/system_info_memory_apitest.cc
|
| @@ -20,9 +20,9 @@ class MockMemoryInfoProviderImpl : public MemoryInfoProvider {
|
| public:
|
| MockMemoryInfoProviderImpl() {}
|
|
|
| - virtual bool QueryInfo(MemoryInfo* info) OVERRIDE {
|
| - info->capacity = 4096;
|
| - info->available_capacity = 1024;
|
| + virtual bool QueryInfo() OVERRIDE {
|
| + info_.capacity = 4096;
|
| + info_.available_capacity = 1024;
|
| return true;
|
| }
|
| private:
|
|
|