dom/mobilemessage/src/ipc/PSmsRequest.ipdl

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

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++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
michael@0 2 /* vim: set ts=2 et sw=2 tw=80: */
michael@0 3 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 6
michael@0 7 include protocol PSms;
michael@0 8 include protocol PBlob;
michael@0 9 include SmsTypes;
michael@0 10
michael@0 11 namespace mozilla {
michael@0 12 namespace dom {
michael@0 13 namespace mobilemessage {
michael@0 14
michael@0 15 protocol PSmsRequest
michael@0 16 {
michael@0 17 manager PSms;
michael@0 18
michael@0 19 child:
michael@0 20 /**
michael@0 21 * Sent when the asynchronous request has completed.
michael@0 22 */
michael@0 23 __delete__(MessageReply response);
michael@0 24 };
michael@0 25
michael@0 26 struct ReplyMessageSend
michael@0 27 {
michael@0 28 MobileMessageData messageData;
michael@0 29 };
michael@0 30
michael@0 31 struct ReplyMessageSendFail
michael@0 32 {
michael@0 33 int32_t error;
michael@0 34 };
michael@0 35
michael@0 36 struct ReplyGetMessage
michael@0 37 {
michael@0 38 MobileMessageData messageData;
michael@0 39 };
michael@0 40
michael@0 41 struct ReplyGetMessageFail
michael@0 42 {
michael@0 43 int32_t error;
michael@0 44 };
michael@0 45
michael@0 46 struct ReplyMessageDelete
michael@0 47 {
michael@0 48 bool[] deleted;
michael@0 49 };
michael@0 50
michael@0 51 struct ReplyMessageDeleteFail
michael@0 52 {
michael@0 53 int32_t error;
michael@0 54 };
michael@0 55
michael@0 56 struct ReplyMarkeMessageRead
michael@0 57 {
michael@0 58 bool read;
michael@0 59 };
michael@0 60
michael@0 61 struct ReplyMarkeMessageReadFail
michael@0 62 {
michael@0 63 int32_t error;
michael@0 64 };
michael@0 65
michael@0 66 struct ReplyGetSegmentInfoForText
michael@0 67 {
michael@0 68 SmsSegmentInfoData infoData;
michael@0 69 };
michael@0 70
michael@0 71 struct ReplyGetSegmentInfoForTextFail
michael@0 72 {
michael@0 73 int32_t error;
michael@0 74 };
michael@0 75
michael@0 76 struct ReplyGetSmscAddress
michael@0 77 {
michael@0 78 nsString smscAddress;
michael@0 79 };
michael@0 80
michael@0 81 struct ReplyGetSmscAddressFail
michael@0 82 {
michael@0 83 int32_t error;
michael@0 84 };
michael@0 85
michael@0 86 union MessageReply
michael@0 87 {
michael@0 88 ReplyMessageSend;
michael@0 89 ReplyMessageSendFail;
michael@0 90 ReplyGetMessage;
michael@0 91 ReplyGetMessageFail;
michael@0 92 ReplyMessageDelete;
michael@0 93 ReplyMessageDeleteFail;
michael@0 94 ReplyMarkeMessageRead;
michael@0 95 ReplyMarkeMessageReadFail;
michael@0 96 ReplyGetSegmentInfoForText;
michael@0 97 ReplyGetSegmentInfoForTextFail;
michael@0 98 ReplyGetSmscAddress;
michael@0 99 ReplyGetSmscAddressFail;
michael@0 100 };
michael@0 101
michael@0 102 } // namespace mobilemessage
michael@0 103 } // namespace dom
michael@0 104 } // namespace mozilla

mercurial