Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: base/memory/memory_coordinator_proxy.cc

Issue 2726983006: Clean up after each MemoryCoordinatorImpl test (Closed)
Patch Set: Allow SetMemoryCoordinator to nullify Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/memory/memory_coordinator_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 MemoryCoordinator* g_memory_coordinator = nullptr; 11 MemoryCoordinator* g_memory_coordinator = nullptr;
12 12
13 } // namespace 13 } // namespace
14 14
15 MemoryCoordinatorProxy::MemoryCoordinatorProxy() { 15 MemoryCoordinatorProxy::MemoryCoordinatorProxy() {
16 } 16 }
17 17
18 MemoryCoordinatorProxy::~MemoryCoordinatorProxy() { 18 MemoryCoordinatorProxy::~MemoryCoordinatorProxy() {
19 } 19 }
20 20
21 // static 21 // static
22 MemoryCoordinatorProxy* MemoryCoordinatorProxy::GetInstance() { 22 MemoryCoordinatorProxy* MemoryCoordinatorProxy::GetInstance() {
23 return Singleton<base::MemoryCoordinatorProxy>::get(); 23 return Singleton<base::MemoryCoordinatorProxy>::get();
24 } 24 }
25 25
26 // static 26 // static
27 void MemoryCoordinatorProxy::SetMemoryCoordinator( 27 void MemoryCoordinatorProxy::SetMemoryCoordinator(
28 MemoryCoordinator* coordinator) { 28 MemoryCoordinator* coordinator) {
29 DCHECK(!g_memory_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( 39 void MemoryCoordinatorProxy::SetCurrentMemoryStateForTesting(
40 MemoryState memory_state) { 40 MemoryState memory_state) {
41 DCHECK(g_memory_coordinator); 41 DCHECK(g_memory_coordinator);
42 g_memory_coordinator->SetCurrentMemoryStateForTesting(memory_state); 42 g_memory_coordinator->SetCurrentMemoryStateForTesting(memory_state);
43 } 43 }
44 44
45 } // namespace base 45 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | content/browser/memory/memory_coordinator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698