Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | /* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- |
michael@0 | 2 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef nsAndroidHandlerApp_h |
michael@0 | 7 | #define nsAndroidHandlerApp_h |
michael@0 | 8 | |
michael@0 | 9 | #include "nsMIMEInfoImpl.h" |
michael@0 | 10 | #include "nsIExternalSharingAppService.h" |
michael@0 | 11 | |
michael@0 | 12 | class nsAndroidHandlerApp : public nsISharingHandlerApp { |
michael@0 | 13 | public: |
michael@0 | 14 | NS_DECL_ISUPPORTS |
michael@0 | 15 | NS_DECL_NSIHANDLERAPP |
michael@0 | 16 | NS_DECL_NSISHARINGHANDLERAPP |
michael@0 | 17 | |
michael@0 | 18 | public: |
michael@0 | 19 | nsAndroidHandlerApp(const nsAString& aName, const nsAString& aDescription, |
michael@0 | 20 | const nsAString& aPackageName, |
michael@0 | 21 | const nsAString& aClassName, |
michael@0 | 22 | const nsACString& aMimeType, const nsAString& aAction); |
michael@0 | 23 | virtual ~nsAndroidHandlerApp(); |
michael@0 | 24 | |
michael@0 | 25 | private: |
michael@0 | 26 | nsString mName; |
michael@0 | 27 | nsString mDescription; |
michael@0 | 28 | nsString mPackageName; |
michael@0 | 29 | nsString mClassName; |
michael@0 | 30 | nsCString mMimeType; |
michael@0 | 31 | nsString mAction; |
michael@0 | 32 | }; |
michael@0 | 33 | #endif |