| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/memory/memory_coordinator_proxy.h" | 5 #include "base/memory/memory_coordinator_proxy.h" |
| 6 | 6 |
| 7 namespace base { | 7 namespace base { |
| 8 | 8 |
| 9 namespace { | 9 namespace { |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 DCHECK(!g_memory_coordinator || !coordinator); | 29 DCHECK(!g_memory_coordinator || !coordinator); |
| 30 g_memory_coordinator = coordinator; | 30 g_memory_coordinator = coordinator; |
| 31 } | 31 } |
| 32 | 32 |
| 33 MemoryState MemoryCoordinatorProxy::GetCurrentMemoryState() const { | 33 MemoryState MemoryCoordinatorProxy::GetCurrentMemoryState() const { |
| 34 if (!g_memory_coordinator) | 34 if (!g_memory_coordinator) |
| 35 return MemoryState::NORMAL; | 35 return MemoryState::NORMAL; |
| 36 return g_memory_coordinator->GetCurrentMemoryState(); | 36 return g_memory_coordinator->GetCurrentMemoryState(); |
| 37 } | 37 } |
| 38 | 38 |
| 39 void MemoryCoordinatorProxy::SetCurrentMemoryStateForTesting( | |
| 40 MemoryState memory_state) { | |
| 41 DCHECK(g_memory_coordinator); | |
| 42 g_memory_coordinator->SetCurrentMemoryStateForTesting(memory_state); | |
| 43 } | |
| 44 | |
| 45 } // namespace base | 39 } // namespace base |
| OLD | NEW |