| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 PassRefPtr<SpeechRecognitionError> SpeechRecognitionError::create(const AtomicSt
ring& eventName, const SpeechRecognitionErrorInit& initializer) | 71 PassRefPtr<SpeechRecognitionError> SpeechRecognitionError::create(const AtomicSt
ring& eventName, const SpeechRecognitionErrorInit& initializer) |
| 72 { | 72 { |
| 73 return adoptRef(new SpeechRecognitionError(eventName, initializer)); | 73 return adoptRef(new SpeechRecognitionError(eventName, initializer)); |
| 74 } | 74 } |
| 75 | 75 |
| 76 SpeechRecognitionError::SpeechRecognitionError(const String& error, const String
& message) | 76 SpeechRecognitionError::SpeechRecognitionError(const String& error, const String
& message) |
| 77 : Event(eventNames().errorEvent, /*canBubble=*/false, /*cancelable=*/false) | 77 : Event(eventNames().errorEvent, /*canBubble=*/false, /*cancelable=*/false) |
| 78 , m_error(error) | 78 , m_error(error) |
| 79 , m_message(message) | 79 , m_message(message) |
| 80 { | 80 { |
| 81 ScriptWrappable::init(this); |
| 81 } | 82 } |
| 82 | 83 |
| 83 SpeechRecognitionError::SpeechRecognitionError(const AtomicString& eventName, co
nst SpeechRecognitionErrorInit& initializer) | 84 SpeechRecognitionError::SpeechRecognitionError(const AtomicString& eventName, co
nst SpeechRecognitionErrorInit& initializer) |
| 84 : Event(eventName, initializer) | 85 : Event(eventName, initializer) |
| 85 , m_error(initializer.error) | 86 , m_error(initializer.error) |
| 86 , m_message(initializer.message) | 87 , m_message(initializer.message) |
| 87 { | 88 { |
| 89 ScriptWrappable::init(this); |
| 88 } | 90 } |
| 89 | 91 |
| 90 const AtomicString& SpeechRecognitionError::interfaceName() const | 92 const AtomicString& SpeechRecognitionError::interfaceName() const |
| 91 { | 93 { |
| 92 return eventNames().interfaceForSpeechRecognitionError; | 94 return eventNames().interfaceForSpeechRecognitionError; |
| 93 } | 95 } |
| 94 | 96 |
| 95 SpeechRecognitionErrorInit::SpeechRecognitionErrorInit() | 97 SpeechRecognitionErrorInit::SpeechRecognitionErrorInit() |
| 96 { | 98 { |
| 97 } | 99 } |
| 98 | 100 |
| 99 } // namespace WebCore | 101 } // namespace WebCore |
| 100 | 102 |
| 101 #endif // ENABLE(SCRIPTED_SPEECH) | 103 #endif // ENABLE(SCRIPTED_SPEECH) |
| OLD | NEW |