| 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 REMOTING_PROTOCOL_ERROR_H_ | 5 #ifndef REMOTING_PROTOCOL_ERROR_H_ |
| 6 #define REMOTING_PROTOCOL_ERROR_H_ | 6 #define REMOTING_PROTOCOL_ERROR_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 namespace remoting { | 10 namespace remoting { |
| 9 namespace protocol { | 11 namespace protocol { |
| 10 | 12 |
| 11 // The UI implementations maintain corresponding definitions of this | 13 // The UI implementations maintain corresponding definitions of this |
| 12 // enumeration in webapp/error.js and | 14 // enumeration in webapp/base/js/error.js, webapp/base/js/chromoting_event.js, |
| 13 // android/java/src/org/chromium/chromoting/jni/JniInterface.java. | 15 // android/java/src/org/chromium/chromoting/jni/ConnectionListener.java and |
| 16 // remoting/protocol/errors.cc. |
| 14 // Be sure to update these locations if you make any changes to the ordering. | 17 // Be sure to update these locations if you make any changes to the ordering. |
| 15 enum ErrorCode { | 18 enum ErrorCode { |
| 16 OK = 0, | 19 OK = 0, |
| 17 PEER_IS_OFFLINE, | 20 PEER_IS_OFFLINE, |
| 18 SESSION_REJECTED, | 21 SESSION_REJECTED, |
| 19 INCOMPATIBLE_PROTOCOL, | 22 INCOMPATIBLE_PROTOCOL, |
| 20 AUTHENTICATION_FAILED, | 23 AUTHENTICATION_FAILED, |
| 21 INVALID_ACCOUNT, | 24 INVALID_ACCOUNT, |
| 22 CHANNEL_CONNECTION_ERROR, | 25 CHANNEL_CONNECTION_ERROR, |
| 23 SIGNALING_ERROR, | 26 SIGNALING_ERROR, |
| 24 SIGNALING_TIMEOUT, | 27 SIGNALING_TIMEOUT, |
| 25 HOST_OVERLOAD, | 28 HOST_OVERLOAD, |
| 26 MAX_SESSION_LENGTH, | 29 MAX_SESSION_LENGTH, |
| 27 HOST_CONFIGURATION_ERROR, | 30 HOST_CONFIGURATION_ERROR, |
| 28 UNKNOWN_ERROR, | 31 UNKNOWN_ERROR, |
| 29 | 32 |
| 30 ERROR_CODE_MAX = UNKNOWN_ERROR, | 33 ERROR_CODE_MAX = UNKNOWN_ERROR, |
| 31 }; | 34 }; |
| 32 | 35 |
| 36 bool ParseErrorCode(const std::string& name, ErrorCode* result); |
| 37 |
| 33 // Returns the literal string of |error|. | 38 // Returns the literal string of |error|. |
| 34 const char* ErrorCodeToString(ErrorCode error); | 39 const char* ErrorCodeToString(ErrorCode error); |
| 35 | 40 |
| 36 } // namespace protocol | 41 } // namespace protocol |
| 37 } // namespace remoting | 42 } // namespace remoting |
| 38 | 43 |
| 39 #endif // REMOTING_PROTOCOL_ERROR_H_ | 44 #endif // REMOTING_PROTOCOL_ERROR_H_ |
| OLD | NEW |