| Index: third_party/WebKit/Source/bindings/core/v8/ToV8.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ToV8.h b/third_party/WebKit/Source/bindings/core/v8/ToV8.h
|
| index ddb16cee674f3c329a88344edaeb6b5796e24a40..8771fbde1d06ffcc57293accdfead5b14092596c 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ToV8.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ToV8.h
|
| @@ -316,7 +316,8 @@ v8::Local<v8::Value> toV8(void* value,
|
| v8::Local<v8::Object> creationContext,
|
| v8::Isolate*) = delete;
|
|
|
| -// Cannot define in ScriptValue because of the circular dependency between toV8 and ScriptValue
|
| +// Cannot define in ScriptValue because of the circular dependency between toV8
|
| +// and ScriptValue
|
| template <typename T>
|
| inline ScriptValue ScriptValue::from(ScriptState* scriptState, T&& value) {
|
| return ScriptValue(scriptState, toV8(std::forward<T>(value), scriptState));
|
|
|