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

Unified Diff: cc/trees/layer_tree_host_impl_unittest.cc

Issue 643993005: Remove limit on number of resources in cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 6 years, 2 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
Index: cc/trees/layer_tree_host_impl_unittest.cc
diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc
index 64758be799b5d6319c6d597a32076180bd23ee42..435ec7c0241596a1666072e41a17c97848e68a47 100644
--- a/cc/trees/layer_tree_host_impl_unittest.cc
+++ b/cc/trees/layer_tree_host_impl_unittest.cc
@@ -6283,8 +6283,8 @@ TEST_F(LayerTreeHostImplTest, DefaultMemoryAllocation) {
}
TEST_F(LayerTreeHostImplTest, MemoryPolicy) {
- ManagedMemoryPolicy policy1(
- 456, gpu::MemoryAllocation::CUTOFF_ALLOW_EVERYTHING, 1000);
+ ManagedMemoryPolicy policy1(456,
+ gpu::MemoryAllocation::CUTOFF_ALLOW_EVERYTHING);
int everything_cutoff_value = ManagedMemoryPolicy::PriorityCutoffToValue(
gpu::MemoryAllocation::CUTOFF_ALLOW_EVERYTHING);
int allow_nice_to_have_cutoff_value =

Powered by Google App Engine
This is Rietveld 408576698