diff -r 000000000000 -r 6474c204b198 dom/mobilemessage/src/MmsMessage.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/mobilemessage/src/MmsMessage.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,105 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_dom_mobilemessage_MmsMessage_h +#define mozilla_dom_mobilemessage_MmsMessage_h + +#include "nsIDOMMozMmsMessage.h" +#include "nsString.h" +#include "mozilla/dom/mobilemessage/Types.h" +#include "mozilla/dom/MozMmsMessageBinding.h" +#include "mozilla/Attributes.h" + +namespace mozilla { +namespace dom { + +namespace mobilemessage { +class MmsMessageData; +} // namespace mobilemessage + +class ContentParent; + +class MmsMessage MOZ_FINAL : public nsIDOMMozMmsMessage +{ +public: + NS_DECL_ISUPPORTS + NS_DECL_NSIDOMMOZMMSMESSAGE + + // If this is changed, change the WebIDL dictionary as well. + struct Attachment MOZ_FINAL + { + nsCOMPtr content; + nsString id; + nsString location; + + explicit Attachment(const MmsAttachment& aAttachment) : + content(aAttachment.mContent), + id(aAttachment.mId), + location(aAttachment.mLocation) + {} + }; + + MmsMessage(int32_t aId, + uint64_t aThreadId, + const nsAString& aIccId, + mobilemessage::DeliveryState aDelivery, + const nsTArray& aDeliveryInfo, + const nsAString& aSender, + const nsTArray& aReceivers, + uint64_t aTimestamp, + uint64_t aSentTimestamp, + bool aRead, + const nsAString& aSubject, + const nsAString& aSmil, + const nsTArray& aAttachments, + uint64_t aExpiryDate, + bool aReadReportRequested); + + MmsMessage(const mobilemessage::MmsMessageData& aData); + + static nsresult Create(int32_t aId, + uint64_t aThreadId, + const nsAString& aIccId, + const nsAString& aDelivery, + const JS::Value& aDeliveryInfo, + const nsAString& aSender, + const JS::Value& aReceivers, + uint64_t aTimestamp, + uint64_t aSentTimestamp, + bool aRead, + const nsAString& aSubject, + const nsAString& aSmil, + const JS::Value& aAttachments, + uint64_t aExpiryDate, + bool aReadReportRequested, + JSContext* aCx, + nsIDOMMozMmsMessage** aMessage); + + bool GetData(ContentParent* aParent, + mobilemessage::MmsMessageData& aData); + +private: + + int32_t mId; + uint64_t mThreadId; + nsString mIccId; + mobilemessage::DeliveryState mDelivery; + nsTArray mDeliveryInfo; + nsString mSender; + nsTArray mReceivers; + uint64_t mTimestamp; + uint64_t mSentTimestamp; + bool mRead; + nsString mSubject; + nsString mSmil; + nsTArray mAttachments; + uint64_t mExpiryDate; + bool mReadReportRequested; +}; + +} // namespace dom +} // namespace mozilla + +#endif // mozilla_dom_mobilemessage_MmsMessage_h