michael@0: /* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsAndroidHandlerApp_h michael@0: #define nsAndroidHandlerApp_h michael@0: michael@0: #include "nsMIMEInfoImpl.h" michael@0: #include "nsIExternalSharingAppService.h" michael@0: michael@0: class nsAndroidHandlerApp : public nsISharingHandlerApp { michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSIHANDLERAPP michael@0: NS_DECL_NSISHARINGHANDLERAPP michael@0: michael@0: public: michael@0: nsAndroidHandlerApp(const nsAString& aName, const nsAString& aDescription, michael@0: const nsAString& aPackageName, michael@0: const nsAString& aClassName, michael@0: const nsACString& aMimeType, const nsAString& aAction); michael@0: virtual ~nsAndroidHandlerApp(); michael@0: michael@0: private: michael@0: nsString mName; michael@0: nsString mDescription; michael@0: nsString mPackageName; michael@0: nsString mClassName; michael@0: nsCString mMimeType; michael@0: nsString mAction; michael@0: }; michael@0: #endif