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

Unified Diff: content/browser/memory/memory_coordinator_impl_unittest.cc

Issue 2739543002: Remove MemoryCoordinatorImpl::GetBrowserMemoryState() (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/memory/memory_coordinator_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/memory/memory_coordinator_impl_unittest.cc
diff --git a/content/browser/memory/memory_coordinator_impl_unittest.cc b/content/browser/memory/memory_coordinator_impl_unittest.cc
index 7104ef938c235f568ba886436bce832b6234d004..9158668f7419f992b420d049524e71d55e288a79 100644
--- a/content/browser/memory/memory_coordinator_impl_unittest.cc
+++ b/content/browser/memory/memory_coordinator_impl_unittest.cc
@@ -452,7 +452,7 @@ TEST_F(MemoryCoordinatorImplTest, UpdateCondition) {
TEST_F(MemoryCoordinatorImplTest, SetMemoryStateForTesting) {
MockMemoryCoordinatorClient client;
base::MemoryCoordinatorClientRegistry::GetInstance()->Register(&client);
- EXPECT_EQ(base::MemoryState::NORMAL, coordinator_->GetBrowserMemoryState());
+ EXPECT_EQ(base::MemoryState::NORMAL, coordinator_->GetCurrentMemoryState());
EXPECT_EQ(base::MemoryState::NORMAL,
base::MemoryCoordinatorProxy::GetInstance()->
GetCurrentMemoryState());
@@ -461,7 +461,7 @@ TEST_F(MemoryCoordinatorImplTest, SetMemoryStateForTesting) {
base::MemoryCoordinatorProxy::GetInstance()->SetCurrentMemoryStateForTesting(
base::MemoryState::THROTTLED);
EXPECT_EQ(base::MemoryState::THROTTLED,
- coordinator_->GetBrowserMemoryState());
+ coordinator_->GetCurrentMemoryState());
EXPECT_EQ(base::MemoryState::THROTTLED,
base::MemoryCoordinatorProxy::GetInstance()->
GetCurrentMemoryState());
« no previous file with comments | « content/browser/memory/memory_coordinator_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698