| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SYNC_NOTIFIER_NOTIFICATIONS_DISABLED_REASON_H_ | 5 #ifndef SYNC_NOTIFIER_NOTIFICATIONS_DISABLED_REASON_H_ |
| 6 #define SYNC_NOTIFIER_NOTIFICATIONS_DISABLED_REASON_H_ | 6 #define SYNC_NOTIFIER_NOTIFICATIONS_DISABLED_REASON_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "jingle/notifier/listener/push_client_observer.h" | 9 #include "jingle/notifier/listener/push_client_observer.h" |
| 10 | 10 |
| 11 namespace csync { | 11 namespace syncer { |
| 12 | 12 |
| 13 enum NotificationsDisabledReason { | 13 enum NotificationsDisabledReason { |
| 14 // There is an underlying transient problem (e.g., network- or | 14 // There is an underlying transient problem (e.g., network- or |
| 15 // XMPP-related). | 15 // XMPP-related). |
| 16 TRANSIENT_NOTIFICATION_ERROR, | 16 TRANSIENT_NOTIFICATION_ERROR, |
| 17 DEFAULT_NOTIFICATION_ERROR = TRANSIENT_NOTIFICATION_ERROR, | 17 DEFAULT_NOTIFICATION_ERROR = TRANSIENT_NOTIFICATION_ERROR, |
| 18 // Our credentials have been rejected. | 18 // Our credentials have been rejected. |
| 19 NOTIFICATION_CREDENTIALS_REJECTED, | 19 NOTIFICATION_CREDENTIALS_REJECTED, |
| 20 // No error (useful as a default value or to avoid keeping a | 20 // No error (useful as a default value or to avoid keeping a |
| 21 // separate bool for notifications enabled/disabled). | 21 // separate bool for notifications enabled/disabled). |
| 22 NO_NOTIFICATION_ERROR | 22 NO_NOTIFICATION_ERROR |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 const char* NotificationsDisabledReasonToString( | 25 const char* NotificationsDisabledReasonToString( |
| 26 NotificationsDisabledReason reason); | 26 NotificationsDisabledReason reason); |
| 27 | 27 |
| 28 NotificationsDisabledReason FromNotifierReason( | 28 NotificationsDisabledReason FromNotifierReason( |
| 29 notifier::NotificationsDisabledReason reason); | 29 notifier::NotificationsDisabledReason reason); |
| 30 | 30 |
| 31 } // namespace csync | 31 } // namespace syncer |
| 32 | 32 |
| 33 #endif // SYNC_NOTIFIER_NOTIFICATIONS_DISABLED_REASON_H_ | 33 #endif // SYNC_NOTIFIER_NOTIFICATIONS_DISABLED_REASON_H_ |
| OLD | NEW |