Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Unified Diff: Source/bindings/tests/results/V8TestObject.cpp

Issue 300743002: Sync binding test results. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/results/V8TestObject.cpp
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp
index 6b8ce458b7246402dd8b2f132797313aaf2e47b0..375c2f9fce85139cfe2b684bd9c2681f7fde3ab7 100644
--- a/Source/bindings/tests/results/V8TestObject.cpp
+++ b/Source/bindings/tests/results/V8TestObject.cpp
@@ -2753,7 +2753,7 @@ static void locationAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Prop
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* proxyImpl = V8TestObject::toNative(holder);
- RefPtr<TestNode> impl = WTF::getPtr(proxyImpl->location());
+ RefPtrWillBeRawPtr<TestNode> impl = WTF::getPtr(proxyImpl->location());
if (!impl)
return;
TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
@@ -2785,7 +2785,7 @@ static void locationWithExceptionAttributeSetter(v8::Local<v8::Value> v8Value, c
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* proxyImpl = V8TestObject::toNative(holder);
- RefPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithException());
+ RefPtrWillBeRawPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithException());
if (!impl)
return;
TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
@@ -2817,7 +2817,7 @@ static void locationWithCallWithAttributeSetter(v8::Local<v8::Value> v8Value, co
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* proxyImpl = V8TestObject::toNative(holder);
- RefPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithCallWith());
+ RefPtrWillBeRawPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithCallWith());
if (!impl)
return;
TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
@@ -2849,7 +2849,7 @@ static void locationWithPerWorldBindingsAttributeSetter(v8::Local<v8::Value> v8V
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* proxyImpl = V8TestObject::toNative(holder);
- RefPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithPerWorldBindings());
+ RefPtrWillBeRawPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithPerWorldBindings());
if (!impl)
return;
TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
@@ -2881,7 +2881,7 @@ static void locationWithPerWorldBindingsAttributeSetterForMainWorld(v8::Local<v8
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* proxyImpl = V8TestObject::toNative(holder);
- RefPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithPerWorldBindings());
+ RefPtrWillBeRawPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationWithPerWorldBindings());
if (!impl)
return;
TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
@@ -3823,7 +3823,7 @@ static void locationReplaceableAttributeSetter(v8::Local<v8::Value> v8Value, con
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* proxyImpl = V8TestObject::toNative(holder);
- RefPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationReplaceable());
+ RefPtrWillBeRawPtr<TestNode> impl = WTF::getPtr(proxyImpl->locationReplaceable());
if (!impl)
return;
TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
« no previous file with comments | « Source/bindings/tests/results/V8TestNode.cpp ('k') | Source/bindings/tests/results/V8TestSpecialOperations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698