Bumping manifests a=b2g-bump
[gecko.git] / dom / mobileconnection / MobileCallForwardingOptions.h
blob0f149c23c879a13a6158fbdf63d3f30e66b1c798
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 file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef mozilla_dom_MobileCallForwardingOptions_h
6 #define mozilla_dom_MobileCallForwardingOptions_h
8 #include "nsIMobileCallForwardingOptions.h"
9 #include "nsString.h"
10 #include "mozilla/Attributes.h"
12 namespace mozilla {
13 namespace dom {
14 namespace mobileconnection {
16 class MobileCallForwardingOptions MOZ_FINAL : public nsIMobileCallForwardingOptions
18 public:
19 NS_DECL_ISUPPORTS
20 NS_DECL_NSIMOBILECALLFORWARDINGOPTIONS
22 MobileCallForwardingOptions(bool aActive, int16_t aAction,
23 int16_t aReason, const nsAString& aNumber,
24 int16_t aTimeSeconds, int16_t aServiceClass);
26 private:
27 // Don't try to use the default constructor.
28 MobileCallForwardingOptions() {}
30 ~MobileCallForwardingOptions() {}
32 bool mActive;
33 int16_t mAction;
34 int16_t mReason;
35 nsString mNumber;
36 int16_t mTimeSeconds;
37 int16_t mServiceClass;
40 } // namespace mobileconnection
41 } // namespace dom
42 } // namespace mozilla
44 #endif // mozilla_dom_MobileCallForwardingOptions_h