2014-10-13 08:35:53 +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 mozilla_dom_IccCardLockError_h
|
|
|
|
#define mozilla_dom_IccCardLockError_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/DOMError.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class IccCardLockError final : public DOMError
|
2014-10-13 08:35:53 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
IccCardLockError(nsPIDOMWindow* aWindow, const nsAString& aName,
|
2014-10-24 12:04:04 +04:00
|
|
|
int16_t aRetryCount);
|
2014-10-13 08:35:53 +04:00
|
|
|
|
|
|
|
static already_AddRefed<IccCardLockError>
|
2014-10-24 12:04:04 +04:00
|
|
|
Constructor(const GlobalObject& aGlobal, const nsAString& aName,
|
|
|
|
int16_t aRetryCount, ErrorResult& aRv);
|
2014-10-13 08:35:53 +04:00
|
|
|
|
|
|
|
virtual JSObject*
|
2015-03-21 19:28:04 +03:00
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-10-13 08:35:53 +04:00
|
|
|
|
|
|
|
// WebIDL interface
|
|
|
|
|
|
|
|
int16_t
|
|
|
|
RetryCount() const
|
|
|
|
{
|
|
|
|
return mRetryCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~IccCardLockError() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int16_t mRetryCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_IccCardLockError_h
|