| Index: third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h b/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
|
| index dd8ae016e53af680d96ae6f6ea0780eac69522c1..17d9a002a9e1c80b8ba9f2092be13e0d29ecf9e5 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
|
| @@ -50,9 +50,9 @@ public:
|
| ErrorCodeLanguageNotSupported = 8
|
| };
|
|
|
| - static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(ErrorCode, const String&);
|
| - static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create();
|
| - static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(const AtomicString&, const SpeechRecognitionErrorInit&);
|
| + static RawPtr<SpeechRecognitionError> create(ErrorCode, const String&);
|
| + static RawPtr<SpeechRecognitionError> create();
|
| + static RawPtr<SpeechRecognitionError> create(const AtomicString&, const SpeechRecognitionErrorInit&);
|
|
|
| const String& error() { return m_error; }
|
| const String& message() { return m_message; }
|
|
|