| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
|
| index 67e29da90e82a854650fe6de851a09716305dc7e..4b4d9323f4afb7f526ae2d42b88cc2e931e868e3 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
|
| @@ -67,6 +67,8 @@ static void doubleAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v
|
| ALLOW_UNUSED_LOCAL(isolate);
|
|
|
| v8::Local<v8::Object> holder = info.Holder();
|
| + ALLOW_UNUSED_LOCAL(holder);
|
| +
|
| TestInterfaceOriginTrialEnabled* impl = V8TestInterfaceOriginTrialEnabled::toImpl(holder);
|
|
|
| ExceptionState exceptionState(isolate, ExceptionState::kSetterContext, "TestInterfaceOriginTrialEnabled", "doubleAttribute");
|
| @@ -92,6 +94,8 @@ static void conditionalLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value
|
| ALLOW_UNUSED_LOCAL(isolate);
|
|
|
| v8::Local<v8::Object> holder = info.Holder();
|
| + ALLOW_UNUSED_LOCAL(holder);
|
| +
|
| TestInterfaceOriginTrialEnabled* impl = V8TestInterfaceOriginTrialEnabled::toImpl(holder);
|
|
|
| ExceptionState exceptionState(isolate, ExceptionState::kSetterContext, "TestInterfaceOriginTrialEnabled", "conditionalLongAttribute");
|
| @@ -120,6 +124,9 @@ static void staticStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, c
|
| v8::Isolate* isolate = info.GetIsolate();
|
| ALLOW_UNUSED_LOCAL(isolate);
|
|
|
| + v8::Local<v8::Object> holder = info.Holder();
|
| + ALLOW_UNUSED_LOCAL(holder);
|
| +
|
| // Prepare the value to be set.
|
| V8StringResource<> cppValue = v8Value;
|
| if (!cppValue.Prepare())
|
|
|