Bumping manifests a=b2g-bump
[gecko.git] / dom / mobilemessage / MobileMessageService.h
blob89f8ba14a5175e0d2b9060c9b7db325b3f5d406c
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef mozilla_dom_mobilemessage_MobileMessageService_h
6 #define mozilla_dom_mobilemessage_MobileMessageService_h
8 #include "mozilla/Attributes.h" // For MOZ_FINAL
9 #include "nsIMobileMessageService.h"
11 namespace mozilla {
12 namespace dom {
13 namespace mobilemessage {
15 class MobileMessageService MOZ_FINAL : public nsIMobileMessageService
17 public:
18 NS_DECL_ISUPPORTS
19 NS_DECL_NSIMOBILEMESSAGESERVICE
21 MobileMessageService() { MOZ_COUNT_CTOR(MobileMessageService); }
23 private:
24 // MOZ_FINAL suppresses -Werror,-Wdelete-non-virtual-dtor
25 ~MobileMessageService() { MOZ_COUNT_DTOR(MobileMessageService); }
28 } // namespace mobilemessage
29 } // namespace dom
30 } // namespace mozilla
32 #endif // mozilla_dom_mobilemessage_MobileMessageService_h