| Index: third_party/WebKit/Source/platform/heap/Heap.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
|
| index d60fef7ed4a557f697dbd83f9e767272398c8986..9a6a940fcb780d4c50fdbde798939204ab1aea73 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Heap.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Heap.h
|
| @@ -266,6 +266,7 @@ public:
|
| static double estimatedMarkingTime();
|
| static void reportMemoryUsageHistogram();
|
| static void reportMemoryUsageForTracing();
|
| + static bool isLowEndDevice() { return s_isLowEndDevice; }
|
|
|
| #if ENABLE(ASSERT)
|
| static uint16_t gcGeneration() { return s_gcGeneration; }
|
| @@ -297,6 +298,7 @@ private:
|
| static size_t s_collectedWrapperCount;
|
| static size_t s_partitionAllocSizeAtLastGC;
|
| static double s_estimatedMarkingTimePerByte;
|
| + static bool s_isLowEndDevice;
|
| #if ENABLE(ASSERT)
|
| static uint16_t s_gcGeneration;
|
| #endif
|
|
|