| Index: third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp
 | 
| index 8343decef57898a0f0b7d762590f854cabcdd938..645951b9e4bffc9b60e24f535e938b7811cec5f2 100644
 | 
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp
 | 
| @@ -27,11 +27,6 @@
 | 
|  
 | 
|  namespace blink {
 | 
|  
 | 
| -SpeechRecognitionEvent* SpeechRecognitionEvent::create()
 | 
| -{
 | 
| -    return new SpeechRecognitionEvent;
 | 
| -}
 | 
| -
 | 
|  SpeechRecognitionEvent* SpeechRecognitionEvent::create(const AtomicString& eventName, const SpeechRecognitionEventInit& initializer)
 | 
|  {
 | 
|      return new SpeechRecognitionEvent(eventName, initializer);
 | 
| @@ -58,11 +53,6 @@ const AtomicString& SpeechRecognitionEvent::interfaceName() const
 | 
|      return EventNames::SpeechRecognitionEvent;
 | 
|  }
 | 
|  
 | 
| -SpeechRecognitionEvent::SpeechRecognitionEvent()
 | 
| -    : m_resultIndex(0)
 | 
| -{
 | 
| -}
 | 
| -
 | 
|  SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, const SpeechRecognitionEventInit& initializer)
 | 
|      : Event(eventName, initializer)
 | 
|      , m_resultIndex(0)
 | 
| 
 |