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

Unified Diff: cc/test/layer_tree_test.cc

Issue 22900018: cc: Set the mapped memory reclaim limit for the renderer compositor on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/max_bytes_pending_upload/max_transfer_buffer_usage_bytes/ Created 7 years, 4 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/test/layer_tree_test.cc
diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc
index 6795f90dfb651d314b91c50d0bafebb7a1969cf9..969e880e5bec1a635d806b9a8eb0ff5e26b564ea 100644
--- a/cc/test/layer_tree_test.cc
+++ b/cc/test/layer_tree_test.cc
@@ -571,6 +571,8 @@ void LayerTreeTest::RunTest(bool threaded,
"Don't run single thread + impl side painting, it doesn't exist.";
settings_.impl_side_painting = true;
}
+ settings_.max_transfer_buffer_usage_bytes
+ = std::numeric_limits<size_t>::max();
danakj 2013/08/23 01:21:46 nit: = goes on the previous line.
kaanb 2013/08/23 01:37:31 Done.
InitializeSettings(&settings_);
main_task_runner_->PostTask(

Powered by Google App Engine
This is Rietveld 408576698