| Index: third_party/WebKit/Source/bindings/core/v8/V8IteratorResultValue.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8IteratorResultValue.h b/third_party/WebKit/Source/bindings/core/v8/V8IteratorResultValue.h
|
| index b47ab29419cca2882e8acf1242250fe5e20ebda9..cf4e09c5372cdb3555f01a4f6d5bbb63fa1d11e6 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8IteratorResultValue.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8IteratorResultValue.h
|
| @@ -34,9 +34,10 @@ inline ScriptValue v8IteratorResult(ScriptState* scriptState, const T& value) {
|
| }
|
|
|
| inline ScriptValue v8IteratorResultDone(ScriptState* scriptState) {
|
| - return ScriptValue(scriptState, v8IteratorResultValue(
|
| - scriptState->isolate(), true,
|
| - v8::Undefined(scriptState->isolate())));
|
| + return ScriptValue(
|
| + scriptState,
|
| + v8IteratorResultValue(scriptState->isolate(), true,
|
| + v8::Undefined(scriptState->isolate())));
|
| }
|
|
|
| } // namespace blink
|
|
|