2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-06-26 04:08:58 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef SpeechRecognitionError_h__
|
|
|
|
#define SpeechRecognitionError_h__
|
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
2013-06-26 04:08:58 +04:00
|
|
|
#include "mozilla/dom/SpeechRecognitionErrorBinding.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
class SpeechRecognitionError : public Event {
|
2013-06-26 04:08:58 +04:00
|
|
|
public:
|
|
|
|
SpeechRecognitionError(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext, WidgetEvent* aEvent);
|
|
|
|
virtual ~SpeechRecognitionError();
|
|
|
|
|
2013-08-23 09:17:08 +04:00
|
|
|
static already_AddRefed<SpeechRecognitionError> Constructor(
|
|
|
|
const GlobalObject& aGlobal, const nsAString& aType,
|
2019-09-12 14:01:17 +03:00
|
|
|
const SpeechRecognitionErrorInit& aParam);
|
2013-06-26 04:08:58 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override {
|
2018-06-26 00:20:54 +03:00
|
|
|
return mozilla::dom::SpeechRecognitionError_Binding::Wrap(aCx, this,
|
|
|
|
aGivenProto);
|
2013-06-26 04:08:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void GetMessage(nsAString& aString) { aString = mMessage; }
|
|
|
|
|
|
|
|
SpeechRecognitionErrorCode Error() { return mError; }
|
|
|
|
|
|
|
|
void InitSpeechRecognitionError(const nsAString& aType, bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
SpeechRecognitionErrorCode aError,
|
2015-11-13 03:09:42 +03:00
|
|
|
const nsAString& aMessage);
|
2013-06-26 04:08:58 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
SpeechRecognitionErrorCode mError;
|
|
|
|
nsString mMessage;
|
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-06-26 04:08:58 +04:00
|
|
|
|
|
|
|
#endif // SpeechRecognitionError_h__
|