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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp

Issue 2733763003: Reimplement [PutForwards] per spec (Closed)
Patch Set: avoid using v8::Maybe Created 3 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: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp
index bbd63c768709b11b2027f081020f2c5b23d83754..2e2b9664afe3c807a6ff00b0db881b00a17ea8d4 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp
@@ -71,6 +71,8 @@ static void nodeNameAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Func
ALLOW_UNUSED_LOCAL(isolate);
v8::Local<v8::Object> holder = info.Holder();
+ ALLOW_UNUSED_LOCAL(holder);
+
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
// Prepare the value to be set.
@@ -94,6 +96,8 @@ static void stringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v
ALLOW_UNUSED_LOCAL(isolate);
v8::Local<v8::Object> holder = info.Holder();
+ ALLOW_UNUSED_LOCAL(holder);
+
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
// Prepare the value to be set.
@@ -127,6 +131,8 @@ static void eventHandlerAttributeAttributeSetter(v8::Local<v8::Value> v8Value, c
ALLOW_UNUSED_LOCAL(isolate);
v8::Local<v8::Object> holder = info.Holder();
+ ALLOW_UNUSED_LOCAL(holder);
+
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
// Prepare the value to be set.
@@ -163,6 +169,8 @@ static void reflectStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value,
ALLOW_UNUSED_LOCAL(isolate);
v8::Local<v8::Object> holder = info.Holder();
+ ALLOW_UNUSED_LOCAL(holder);
+
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
// Prepare the value to be set.
@@ -186,6 +194,8 @@ static void reflectUrlStringAttributeAttributeSetter(v8::Local<v8::Value> v8Valu
ALLOW_UNUSED_LOCAL(isolate);
v8::Local<v8::Object> holder = info.Holder();
+ ALLOW_UNUSED_LOCAL(holder);
+
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
// Prepare the value to be set.

Powered by Google App Engine
This is Rietveld 408576698