summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h b/chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h
index 24be96080e0..62f5a5f301d 100644
--- a/chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h
+++ b/chromium/third_party/blink/renderer/modules/speech/speech_synthesis_error_event.h
@@ -18,13 +18,13 @@ class SpeechSynthesisErrorEvent : public SpeechSynthesisEvent {
public:
static SpeechSynthesisErrorEvent* Create(
const AtomicString& type,
- const SpeechSynthesisErrorEventInit& init);
+ const SpeechSynthesisErrorEventInit* init);
const String error() const { return error_; }
private:
SpeechSynthesisErrorEvent(const AtomicString& type,
- const SpeechSynthesisErrorEventInit& init);
+ const SpeechSynthesisErrorEventInit* init);
const String error_;
};