| Index: third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.h b/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.h
|
| index d2e37939acd7566e94d8907b58a7f864ff357c18..158f94485329fd4d1db71071625c9490be6cab03 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.h
|
| @@ -35,9 +35,10 @@ class CORE_EXPORT V8ObjectBuilder final {
|
|
|
| template <typename T>
|
| V8ObjectBuilder& add(const StringView& name, const T& value) {
|
| - addInternal(name, v8::Local<v8::Value>(
|
| - ToV8(value, m_scriptState->context()->Global(),
|
| - m_scriptState->isolate())));
|
| + addInternal(
|
| + name,
|
| + v8::Local<v8::Value>(ToV8(value, m_scriptState->context()->Global(),
|
| + m_scriptState->isolate())));
|
| return *this;
|
| }
|
|
|
|
|