/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim:set ts=2 sw=2 sts=2 et cindent: */ /* 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_USSDSession_h #define mozilla_dom_USSDSession_h #include "mozilla/Attributes.h" #include "mozilla/ErrorResult.h" #include "mozilla/dom/BindingDeclarations.h" #include "mozilla/dom/Promise.h" #include "nsAutoPtr.h" #include "nsCOMPtr.h" #include "nsCycleCollectionParticipant.h" #include "nsITelephonyService.h" #include "nsPIDOMWindow.h" #include "nsWrapperCache.h" struct JSContext; namespace mozilla { namespace dom { class USSDSession MOZ_FINAL : public nsISupports, public nsWrapperCache { public: NS_DECL_CYCLE_COLLECTING_ISUPPORTS NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(USSDSession) USSDSession(nsPIDOMWindow* aWindow, nsITelephonyService* aService, uint32_t aServiceId); nsPIDOMWindow* GetParentObject() const; virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE; // WebIDL static already_AddRefed Constructor(const GlobalObject& aGlobal, uint32_t aServiceId, ErrorResult& aRv); already_AddRefed Send(const nsAString& aUssd, ErrorResult& aRv); private: ~USSDSession(); nsCOMPtr mWindow; nsCOMPtr mService; uint32_t mServiceId; }; } // namespace dom } // namespace mozilla #endif // mozilla_dom_USSDSession_h