2011-11-25 00:48:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2011-11-25 00:48:57 +00:00
|
|
|
|
2013-03-01 08:38:47 +00:00
|
|
|
#ifndef mozilla_dom_mobilemessage_Constants_h
|
|
|
|
#define mozilla_dom_mobilemessage_Constants_h
|
2011-11-25 00:48:57 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-03-01 08:38:47 +00:00
|
|
|
namespace mobilemessage {
|
2011-11-25 00:48:57 +00:00
|
|
|
|
2012-12-11 09:09:42 +00:00
|
|
|
// Defined in the .cpp.
|
|
|
|
extern const char* kSmsReceivedObserverTopic;
|
2013-05-10 20:39:22 +00:00
|
|
|
extern const char* kSmsRetrievingObserverTopic;
|
2012-12-11 09:09:42 +00:00
|
|
|
extern const char* kSmsSendingObserverTopic;
|
|
|
|
extern const char* kSmsSentObserverTopic;
|
|
|
|
extern const char* kSmsFailedObserverTopic;
|
|
|
|
extern const char* kSmsDeliverySuccessObserverTopic;
|
|
|
|
extern const char* kSmsDeliveryErrorObserverTopic;
|
2013-07-29 22:50:21 +00:00
|
|
|
extern const char* kSilentSmsReceivedObserverTopic;
|
2013-11-25 10:54:59 +00:00
|
|
|
extern const char* kSmsReadSuccessObserverTopic;
|
|
|
|
extern const char* kSmsReadErrorObserverTopic;
|
2014-06-27 05:17:47 +00:00
|
|
|
extern const char* kSmsDeletedObserverTopic;
|
2013-03-09 07:22:42 +00:00
|
|
|
|
2013-03-09 07:21:55 +00:00
|
|
|
#define DELIVERY_RECEIVED NS_LITERAL_STRING("received")
|
|
|
|
#define DELIVERY_SENDING NS_LITERAL_STRING("sending")
|
|
|
|
#define DELIVERY_SENT NS_LITERAL_STRING("sent")
|
|
|
|
#define DELIVERY_ERROR NS_LITERAL_STRING("error")
|
|
|
|
#define DELIVERY_NOT_DOWNLOADED NS_LITERAL_STRING("not-downloaded")
|
2011-12-24 05:02:52 +00:00
|
|
|
|
2012-10-30 10:53:24 +00:00
|
|
|
#define DELIVERY_STATUS_NOT_APPLICABLE NS_LITERAL_STRING("not-applicable")
|
|
|
|
#define DELIVERY_STATUS_SUCCESS NS_LITERAL_STRING("success")
|
|
|
|
#define DELIVERY_STATUS_PENDING NS_LITERAL_STRING("pending")
|
|
|
|
#define DELIVERY_STATUS_ERROR NS_LITERAL_STRING("error")
|
2013-05-10 18:50:18 +00:00
|
|
|
#define DELIVERY_STATUS_REJECTED NS_LITERAL_STRING("rejected")
|
|
|
|
#define DELIVERY_STATUS_MANUAL NS_LITERAL_STRING("manual")
|
2012-10-30 10:53:24 +00:00
|
|
|
|
2013-11-25 10:54:59 +00:00
|
|
|
#define READ_STATUS_NOT_APPLICABLE NS_LITERAL_STRING("not-applicable")
|
|
|
|
#define READ_STATUS_SUCCESS NS_LITERAL_STRING("success")
|
|
|
|
#define READ_STATUS_PENDING NS_LITERAL_STRING("pending")
|
|
|
|
#define READ_STATUS_ERROR NS_LITERAL_STRING("error")
|
|
|
|
|
2012-10-31 09:10:44 +00:00
|
|
|
#define MESSAGE_CLASS_NORMAL NS_LITERAL_STRING("normal")
|
|
|
|
#define MESSAGE_CLASS_CLASS_0 NS_LITERAL_STRING("class-0")
|
|
|
|
#define MESSAGE_CLASS_CLASS_1 NS_LITERAL_STRING("class-1")
|
|
|
|
#define MESSAGE_CLASS_CLASS_2 NS_LITERAL_STRING("class-2")
|
|
|
|
#define MESSAGE_CLASS_CLASS_3 NS_LITERAL_STRING("class-3")
|
|
|
|
|
2013-04-26 08:40:42 +00:00
|
|
|
#define MESSAGE_TYPE_SMS NS_LITERAL_STRING("sms")
|
|
|
|
#define MESSAGE_TYPE_MMS NS_LITERAL_STRING("mms")
|
|
|
|
|
2013-03-01 08:38:47 +00:00
|
|
|
} // namespace mobilemessage
|
2011-11-25 00:48:57 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-03-01 08:38:47 +00:00
|
|
|
#endif // mozilla_dom_mobilemessage_Constants_h
|