Chromium Code Reviews| 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
|
| } |
| }; |