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

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

Issue 2741883004: Remove MemoryCoordinatorProxy::SetCurrentMemoryStateForTesting (Closed)
Patch Set: 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 | « base/memory/memory_coordinator_proxy.h ('k') | chrome/browser/sessions/tab_loader_unittest.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
(...skipping 18 matching lines...) Expand all
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
OLDNEW
« no previous file with comments | « base/memory/memory_coordinator_proxy.h ('k') | chrome/browser/sessions/tab_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698