| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| index e3f3372b85f2ab31f3900425829b178634b62304..29b94ee5e679c0a9861cd687786136cee08185a3 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| @@ -28,16 +28,16 @@ public:
|
| static bool shortMethodImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, int* result);
|
| static bool shortMethodWithShortArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, int value, int* result);
|
| static bool stringMethodWithStringArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, String value, String* result);
|
| - static bool nodeMethodWithNodeArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, PassRefPtrWillBeRawPtr<Node> value, RefPtrWillBeRawPtr<Node>* result);
|
| - static bool nodeMethodWithVariousArgumentsImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, PassRefPtrWillBeRawPtr<Document> document, PassRefPtrWillBeRawPtr<Node> node, int value1, double value2, String string, RefPtrWillBeRawPtr<Node>* result);
|
| + static bool nodeMethodWithNodeArgumentImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, RawPtr<Node> value, RawPtr<Node>* result);
|
| + static bool nodeMethodWithVariousArgumentsImplementedInPrivateScriptMethod(LocalFrame* frame, TestObject* holderImpl, RawPtr<Document> document, RawPtr<Node> node, int value1, double value2, String string, RawPtr<Node>* result);
|
| static bool methodForPrivateScriptOnlyMethod(LocalFrame* frame, TestObject* holderImpl, int value1, int value2, int* result);
|
| static bool readonlyShortAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, int* result);
|
| static bool shortAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, int* result);
|
| static bool shortAttributeAttributeSetter(LocalFrame* frame, TestObject* holderImpl, int cppValue);
|
| static bool stringAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, String* result);
|
| static bool stringAttributeAttributeSetter(LocalFrame* frame, TestObject* holderImpl, String cppValue);
|
| - static bool nodeAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, RefPtrWillBeRawPtr<Node>* result);
|
| - static bool nodeAttributeAttributeSetter(LocalFrame* frame, TestObject* holderImpl, PassRefPtrWillBeRawPtr<Node> cppValue);
|
| + static bool nodeAttributeAttributeGetter(LocalFrame* frame, TestObject* holderImpl, RawPtr<Node>* result);
|
| + static bool nodeAttributeAttributeSetter(LocalFrame* frame, TestObject* holderImpl, RawPtr<Node> cppValue);
|
| static bool attributeForPrivateScriptOnlyAttributeGetter(LocalFrame* frame, TestObject* holderImpl, String* result);
|
| static bool attributeForPrivateScriptOnlyAttributeSetter(LocalFrame* frame, TestObject* holderImpl, String cppValue);
|
| static bool enumForPrivateScriptAttributeGetter(LocalFrame* frame, TestObject* holderImpl, String* result);
|
|
|