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

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

Issue 2731913002: NotForReview: Expose the global memory budget (chromium side)
Patch Set: Add --simulate-memory-pressure 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
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 int64_t MemoryCoordinatorProxy::GetGlobalBudget() const {
40 if (!g_memory_coordinator)
41 return -1;
42 return g_memory_coordinator->GetGlobalBudget();
43 }
44
45 void MemoryCoordinatorProxy::SetGlobalBudgetUpdateInterval(
46 uint32_t interval_ms) {
47 if (!g_memory_coordinator)
48 return;
49 g_memory_coordinator->SetGlobalBudgetUpdateInterval(interval_ms);
50 }
51
52 bool MemoryCoordinatorProxy::IsEnabled() {
53 return g_memory_coordinator != nullptr;
54 }
55
39 } // namespace base 56 } // namespace base
OLDNEW
« no previous file with comments | « base/memory/memory_coordinator_proxy.h ('k') | content/browser/memory/memory_condition_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698