| Index: third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| index 36ec360825bcf7fb632120fdff168c7bf2302b8d..db1513a89c0f4f8e707b8e69ffc1913edc47007f 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
|
| @@ -531,10 +531,9 @@ ScriptStreamer::ScriptStreamer(
|
| m_scriptType(scriptType),
|
| m_scriptURLString(m_resource->url().copy().getString()),
|
| m_scriptResourceIdentifier(m_resource->identifier()),
|
| - m_encoding(
|
| - v8::ScriptCompiler::StreamedSource::
|
| - TWO_BYTE) // Unfortunately there's no dummy encoding value in the enum; let's use one we don't stream.
|
| - ,
|
| + // Unfortunately there's no dummy encoding value in the enum; let's use
|
| + // one we don't stream.
|
| + m_encoding(v8::ScriptCompiler::StreamedSource::TWO_BYTE),
|
| m_loadingTaskRunner(loadingTaskRunner->clone()) {}
|
|
|
| ScriptStreamer::~ScriptStreamer() {}
|
|
|