| Index: third_party/WebKit/Source/bindings/tests/results/core/NodeOrNodeList.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/NodeOrNodeList.h b/third_party/WebKit/Source/bindings/tests/results/core/NodeOrNodeList.h
|
| index 20a371401f59c70eb57631fc12a696eaf65229ac..55f4761ae2c8337a7452086996c65000567099b7 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/NodeOrNodeList.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/NodeOrNodeList.h
|
| @@ -55,7 +55,7 @@ class CORE_EXPORT NodeOrNodeList final {
|
| Member<Node> m_node;
|
| Member<NodeList> m_nodeList;
|
|
|
| - friend CORE_EXPORT v8::Local<v8::Value> toV8(const NodeOrNodeList&, v8::Local<v8::Object>, v8::Isolate*);
|
| + friend CORE_EXPORT v8::Local<v8::Value> ToV8(const NodeOrNodeList&, v8::Local<v8::Object>, v8::Isolate*);
|
| };
|
|
|
| class V8NodeOrNodeList final {
|
| @@ -63,11 +63,11 @@ class V8NodeOrNodeList final {
|
| CORE_EXPORT static void toImpl(v8::Isolate*, v8::Local<v8::Value>, NodeOrNodeList&, UnionTypeConversionMode, ExceptionState&);
|
| };
|
|
|
| -CORE_EXPORT v8::Local<v8::Value> toV8(const NodeOrNodeList&, v8::Local<v8::Object>, v8::Isolate*);
|
| +CORE_EXPORT v8::Local<v8::Value> ToV8(const NodeOrNodeList&, v8::Local<v8::Object>, v8::Isolate*);
|
|
|
| template <class CallbackInfo>
|
| inline void v8SetReturnValue(const CallbackInfo& callbackInfo, NodeOrNodeList& impl) {
|
| - v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| + v8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| }
|
|
|
| template <>
|
|
|