Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #ifndef NS_EXTERNAL_SHARING_APP_SERVICE_H |
michael@0 | 6 | #define NS_EXTERNAL_SHARING_APP_SERVICE_H |
michael@0 | 7 | |
michael@0 | 8 | #include "nsIExternalSharingAppService.h" |
michael@0 | 9 | #include "nsAutoPtr.h" |
michael@0 | 10 | |
michael@0 | 11 | class ShareUiInterface; |
michael@0 | 12 | |
michael@0 | 13 | #define NS_EXTERNALSHARINGAPPSERVICE_CID \ |
michael@0 | 14 | {0xea782c90, 0xc6ec, 0x11df, \ |
michael@0 | 15 | {0xbd, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66, 0x74}} |
michael@0 | 16 | |
michael@0 | 17 | class nsExternalSharingAppService : public nsIExternalSharingAppService |
michael@0 | 18 | { |
michael@0 | 19 | public: |
michael@0 | 20 | NS_DECL_ISUPPORTS |
michael@0 | 21 | NS_DECL_NSIEXTERNALSHARINGAPPSERVICE |
michael@0 | 22 | |
michael@0 | 23 | nsExternalSharingAppService(); |
michael@0 | 24 | |
michael@0 | 25 | private: |
michael@0 | 26 | ~nsExternalSharingAppService(); |
michael@0 | 27 | |
michael@0 | 28 | protected: |
michael@0 | 29 | nsAutoPtr<ShareUiInterface> mShareUi; |
michael@0 | 30 | }; |
michael@0 | 31 | #endif |