| Index: Source/bindings/tests/results/core/V8TestInterface.cpp | 
| diff --git a/Source/bindings/tests/results/core/V8TestInterface.cpp b/Source/bindings/tests/results/core/V8TestInterface.cpp | 
| index e043b369b2da6668a22730eab45780edd204271f..9df9885c4ada21595730f5aa154964d5a8e76e8b 100644 | 
| --- a/Source/bindings/tests/results/core/V8TestInterface.cpp | 
| +++ b/Source/bindings/tests/results/core/V8TestInterface.cpp | 
| @@ -1205,6 +1205,19 @@ static void overloadMethodWithExposedAndRuntimeEnabledFlagMethodCallback(const v | 
| TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution"); | 
| } | 
|  | 
| +static void methodWithExposedHavingRuntimeEnabldFlagMethod(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| +{ | 
| +    TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); | 
| +    impl->methodWithExposedHavingRuntimeEnabldFlag(); | 
| +} | 
| + | 
| +static void methodWithExposedHavingRuntimeEnabldFlagMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| +{ | 
| +    TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMMethod"); | 
| +    TestInterfaceImplementationV8Internal::methodWithExposedHavingRuntimeEnabldFlagMethod(info); | 
| +    TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution"); | 
| +} | 
| + | 
| static void windowAndServiceWorkerExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| { | 
| TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); | 
| @@ -2157,6 +2170,9 @@ void V8TestInterface::installConditionallyEnabledMethods(v8::Handle<v8::Object> | 
| if (context && (context->isDocument())) { | 
| prototypeObject->Set(v8AtomicString(isolate, "overloadMethodWithExposedAndRuntimeEnabledFlag"), v8::FunctionTemplate::New(isolate, TestInterfaceImplementationV8Internal::overloadMethodWithExposedAndRuntimeEnabledFlagMethodCallback, v8Undefined(), defaultSignature, 1)->GetFunction()); | 
| } | 
| +    if (context && ((context->isDocument() && RuntimeEnabledFeatures::featureNameEnabled()) || (context->isWorkerGlobalScope() && RuntimeEnabledFeatures::featureName2Enabled()))) { | 
| +        prototypeObject->Set(v8AtomicString(isolate, "methodWithExposedHavingRuntimeEnabldFlag"), v8::FunctionTemplate::New(isolate, TestInterfaceImplementationV8Internal::methodWithExposedHavingRuntimeEnabldFlagMethodCallback, v8Undefined(), defaultSignature, 0)->GetFunction()); | 
| +    } | 
| if (context && (context->isDocument() || context->isServiceWorkerGlobalScope())) { | 
| prototypeObject->Set(v8AtomicString(isolate, "windowAndServiceWorkerExposedMethod"), v8::FunctionTemplate::New(isolate, TestInterfaceImplementationV8Internal::windowAndServiceWorkerExposedMethodMethodCallback, v8Undefined(), defaultSignature, 0)->GetFunction()); | 
| } | 
|  |