| Index: Source/bindings/tests/results/V8TestExtendedEvent.cpp
 | 
| diff --git a/Source/bindings/tests/results/V8TestExtendedEvent.cpp b/Source/bindings/tests/results/V8TestExtendedEvent.cpp
 | 
| index 7148fe4eaaa067cb6faad448c5575f946a81d5e5..d4f74cb78f163ea9d9a5363a2ac97ff6af056165 100644
 | 
| --- a/Source/bindings/tests/results/V8TestExtendedEvent.cpp
 | 
| +++ b/Source/bindings/tests/results/V8TestExtendedEvent.cpp
 | 
| @@ -180,7 +180,7 @@ static v8::Handle<v8::FunctionTemplate> ConfigureV8TestExtendedEventTemplate(v8:
 | 
|      UNUSED_PARAM(prototypeTemplate);
 | 
|  
 | 
|      // Custom toString template
 | 
| -    functionTemplate->Set(v8::String::NewSymbol("toString"), V8PerIsolateData::current()->toStringTemplate());
 | 
| +    functionTemplate->Set(v8::String::NewFromUtf8(isolate, "toString", v8::String::kInternalizedString), V8PerIsolateData::current()->toStringTemplate());
 | 
|      return functionTemplate;
 | 
|  }
 | 
|  
 | 
| @@ -192,11 +192,11 @@ v8::Handle<v8::FunctionTemplate> V8TestExtendedEvent::GetTemplate(v8::Isolate* i
 | 
|          return result->value.newLocal(isolate);
 | 
|  
 | 
|      TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate");
 | 
| -    v8::HandleScope handleScope(isolate);
 | 
| -    v8::Handle<v8::FunctionTemplate> templ =
 | 
| +    v8::EscapableHandleScope handleScope(isolate);
 | 
| +    v8::Local<v8::FunctionTemplate> templ =
 | 
|          ConfigureV8TestExtendedEventTemplate(data->rawTemplate(&wrapperTypeInfo, currentWorldType), isolate, currentWorldType);
 | 
|      data->templateMap(currentWorldType).add(&wrapperTypeInfo, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
 | 
| -    return handleScope.Close(templ);
 | 
| +    return handleScope.Escape(templ);
 | 
|  }
 | 
|  
 | 
|  bool V8TestExtendedEvent::hasInstance(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate, WrapperWorldType currentWorldType)
 | 
| 
 |