| Index: third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.h b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.h
|
| index 18913b464778f2c3038b79126de54ef1f0b4682d..784bc80a209c04bca67ed7f00a77ffeb611c22e0 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.h
|
| @@ -103,15 +103,15 @@ public:
|
|
|
| static void setSmallScriptThresholdForTesting(size_t threshold)
|
| {
|
| - kSmallScriptThreshold = threshold;
|
| + s_smallScriptThreshold = threshold;
|
| }
|
|
|
| - static size_t smallScriptThreshold() { return kSmallScriptThreshold; }
|
| + static size_t smallScriptThreshold() { return s_smallScriptThreshold; }
|
|
|
| private:
|
| // Scripts whose first data chunk is smaller than this constant won't be
|
| // streamed. Non-const for testing.
|
| - static size_t kSmallScriptThreshold;
|
| + static size_t s_smallScriptThreshold;
|
|
|
| ScriptStreamer(ScriptResource*, Type, ScriptState*, v8::ScriptCompiler::CompileOptions, WebTaskRunner*);
|
|
|
|
|