/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */ #include "mozilla/dom/IccCardLockError.h" #include "mozilla/dom/IccCardLockErrorBinding.h" namespace mozilla { namespace dom { NS_IMPL_ISUPPORTS_INHERITED0(IccCardLockError, DOMError) /* static */ already_AddRefed IccCardLockError::Constructor(const GlobalObject& aGlobal, const nsAString& aName, int16_t aRetryCount, ErrorResult& aRv) { nsCOMPtr window = do_QueryInterface(aGlobal.GetAsSupports()); if (!window) { aRv.Throw(NS_ERROR_FAILURE); return nullptr; } RefPtr result = new IccCardLockError(window, aName, aRetryCount); return result.forget(); } IccCardLockError::IccCardLockError(nsPIDOMWindow* aWindow, const nsAString& aName, int16_t aRetryCount) : DOMError(aWindow, aName) , mRetryCount(aRetryCount) { } JSObject* IccCardLockError::WrapObject(JSContext* aCx, JS::Handle aGivenProto) { return IccCardLockErrorBinding::Wrap(aCx, this, aGivenProto); } } // namespace dom } // namespace mozilla