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

Unified Diff: cc/test/impl_side_painting_settings.h

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/impl_side_painting_settings.h
diff --git a/cc/test/impl_side_painting_settings.h b/cc/test/impl_side_painting_settings.h
index 6929a484c87738aaf03254e01e3b60d86e6f0af3..b18a8ea473529443a7fdfdb1cf573f26b9f84289 100644
--- a/cc/test/impl_side_painting_settings.h
+++ b/cc/test/impl_side_painting_settings.h
@@ -5,6 +5,8 @@
#ifndef CC_TEST_IMPL_SIDE_PAINTING_SETTINGS_H_
#define CC_TEST_IMPL_SIDE_PAINTING_SETTINGS_H_
+#include <limits>
+
#include "cc/trees/layer_tree_settings.h"
namespace cc {
@@ -13,6 +15,7 @@ class ImplSidePaintingSettings : public LayerTreeSettings {
public:
ImplSidePaintingSettings() {
impl_side_painting = true;
+ max_transfer_buffer_usage_bytes = std::numeric_limits<size_t>::max();
danakj 2013/08/23 01:21:46 needed? this is awkward cuz this class should just
kaanb 2013/08/23 01:37:31 https://code.google.com/p/chromium/codesearch#chro
}
};

Powered by Google App Engine
This is Rietveld 408576698