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

Unified Diff: cc/trees/layer_tree_host_pixeltest_masks.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: Add comment 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/trees/layer_tree_host_pixeltest_masks.cc
diff --git a/cc/trees/layer_tree_host_pixeltest_masks.cc b/cc/trees/layer_tree_host_pixeltest_masks.cc
index 90570ec0b64a4b4b054af6bea722296f41a27fb8..a26c6f9870dec093803aa44f2ef8cd3eeb2f1f9f 100644
--- a/cc/trees/layer_tree_host_pixeltest_masks.cc
+++ b/cc/trees/layer_tree_host_pixeltest_masks.cc
@@ -15,7 +15,12 @@
namespace cc {
namespace {
-class LayerTreeHostMasksPixelTest : public LayerTreePixelTest {};
+class LayerTreeHostMasksPixelTest : public LayerTreePixelTest {
+ protected:
+ virtual void InitializeSettings(LayerTreeSettings* settings) OVERRIDE {
+ settings->max_bytes_pending_upload = 16 * 1024 * 1024;
+ }
+};
class MaskContentLayerClient : public cc::ContentLayerClient {
public:

Powered by Google App Engine
This is Rietveld 408576698