2014-04-22 22:59:47 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2014-08-28 16:51:41 -07:00
|
|
|
* 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/. */
|
2014-04-22 22:59:47 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_MmiError_h
|
|
|
|
#define mozilla_dom_MmiError_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/DOMError.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class DOMMMIError MOZ_FINAL : public DOMError
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DOMMMIError, DOMError)
|
|
|
|
|
|
|
|
DOMMMIError(nsPIDOMWindow* aWindow, const nsAString& aName,
|
|
|
|
const nsAString& aMessage, const nsAString& aServiceCode,
|
|
|
|
const Nullable<int16_t>& aInfo);
|
|
|
|
|
|
|
|
virtual JSObject*
|
|
|
|
WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
// WebIDL interface
|
2014-08-28 16:51:41 -07:00
|
|
|
static already_AddRefed<DOMMMIError>
|
|
|
|
Constructor(const GlobalObject& aGlobal, const nsAString& aServiceCode,
|
|
|
|
const nsAString& aName, const nsAString& aMessage,
|
|
|
|
const Nullable<int16_t>& aInfo, ErrorResult& aRv);
|
2014-04-22 22:59:47 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
GetServiceCode(nsString& aServiceCode) const
|
|
|
|
{
|
|
|
|
aServiceCode = mServiceCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
Nullable<int16_t>
|
|
|
|
GetAdditionalInformation() const
|
|
|
|
{
|
|
|
|
return mInfo;
|
|
|
|
}
|
|
|
|
|
2014-07-11 00:58:01 -07:00
|
|
|
private:
|
|
|
|
~DOMMMIError() {}
|
|
|
|
|
2014-04-22 22:59:47 -07:00
|
|
|
private:
|
|
|
|
nsString mServiceCode;
|
|
|
|
Nullable<int16_t> mInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_MmiError_h
|