Chromium Code Reviews| Index: content/common/gpu/gpu_memory_manager.h |
| diff --git a/content/common/gpu/gpu_memory_manager.h b/content/common/gpu/gpu_memory_manager.h |
| index 015f0b03eae0576cad1bb13d4464c549e389b1ce..16eb32a225fdf4a836239ca179e777b054a8878c 100644 |
| --- a/content/common/gpu/gpu_memory_manager.h |
| +++ b/content/common/gpu/gpu_memory_manager.h |
| @@ -103,7 +103,11 @@ class CONTENT_EXPORT GpuMemoryManager : |
| // The maximum amount of memory that a tab may be assigned |
| size_t GetMaximumTabAllocation() const { |
| +#if defined(OS_CHROMEOS) |
| + return 1024 * 1024 * 1024; |
|
piman
2012/09/11 01:25:44
or maybe to avoid modifying all the code you can j
|
| +#else |
| return 128 * 1024 * 1024; |
| +#endif |
| } |
| // The minimum non-zero amount of memory that a tab may be assigned |