Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
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 file, |
michael@0 | 4 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "SmsSegmentInfo.h" |
michael@0 | 7 | #include "nsIDOMClassInfo.h" |
michael@0 | 8 | |
michael@0 | 9 | using namespace mozilla::dom::mobilemessage; |
michael@0 | 10 | |
michael@0 | 11 | DOMCI_DATA(MozSmsSegmentInfo, mozilla::dom::SmsSegmentInfo) |
michael@0 | 12 | |
michael@0 | 13 | namespace mozilla { |
michael@0 | 14 | namespace dom { |
michael@0 | 15 | |
michael@0 | 16 | NS_INTERFACE_MAP_BEGIN(SmsSegmentInfo) |
michael@0 | 17 | NS_INTERFACE_MAP_ENTRY(nsIDOMMozSmsSegmentInfo) |
michael@0 | 18 | NS_INTERFACE_MAP_ENTRY(nsISupports) |
michael@0 | 19 | NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(MozSmsSegmentInfo) |
michael@0 | 20 | NS_INTERFACE_MAP_END |
michael@0 | 21 | |
michael@0 | 22 | NS_IMPL_ADDREF(SmsSegmentInfo) |
michael@0 | 23 | NS_IMPL_RELEASE(SmsSegmentInfo) |
michael@0 | 24 | |
michael@0 | 25 | SmsSegmentInfo::SmsSegmentInfo(int32_t aSegments, |
michael@0 | 26 | int32_t aCharsPerSegment, |
michael@0 | 27 | int32_t aCharsAvailableInLastSegment) |
michael@0 | 28 | : mData(aSegments, aCharsPerSegment, aCharsAvailableInLastSegment) |
michael@0 | 29 | { |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | SmsSegmentInfo::SmsSegmentInfo(const SmsSegmentInfoData& aData) |
michael@0 | 33 | : mData(aData) |
michael@0 | 34 | { |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | NS_IMETHODIMP |
michael@0 | 38 | SmsSegmentInfo::GetSegments(int32_t* aSegments) |
michael@0 | 39 | { |
michael@0 | 40 | *aSegments = mData.segments(); |
michael@0 | 41 | return NS_OK; |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | NS_IMETHODIMP |
michael@0 | 45 | SmsSegmentInfo::GetCharsPerSegment(int32_t* aCharsPerSegment) |
michael@0 | 46 | { |
michael@0 | 47 | *aCharsPerSegment = mData.charsPerSegment(); |
michael@0 | 48 | return NS_OK; |
michael@0 | 49 | } |
michael@0 | 50 | |
michael@0 | 51 | NS_IMETHODIMP |
michael@0 | 52 | SmsSegmentInfo::GetCharsAvailableInLastSegment(int32_t* aCharsAvailableInLastSegment) |
michael@0 | 53 | { |
michael@0 | 54 | *aCharsAvailableInLastSegment = mData.charsAvailableInLastSegment(); |
michael@0 | 55 | return NS_OK; |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | const SmsSegmentInfoData& |
michael@0 | 59 | SmsSegmentInfo::GetData() const |
michael@0 | 60 | { |
michael@0 | 61 | return mData; |
michael@0 | 62 | } |
michael@0 | 63 | |
michael@0 | 64 | } // namespace dom |
michael@0 | 65 | } // namespace mozilla |