Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: remoting/protocol/errors.h

Issue 1238343002: Added ConnectionTimeObserver to calculate the times to authenticate and connect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unused headers. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/protocol/connection_to_host_impl.cc ('k') | remoting/protocol/errors.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 namespace remoting { 8 namespace remoting {
9 namespace protocol { 9 namespace protocol {
10 10
11 // The UI implementations maintain corresponding definitions of this 11 // The UI implementations maintain corresponding definitions of this
12 // enumeration in webapp/error.js and 12 // enumeration in webapp/error.js and
13 // android/java/src/org/chromium/chromoting/jni/JniInterface.java. 13 // android/java/src/org/chromium/chromoting/jni/JniInterface.java.
14 // Be sure to update these locations if you make any changes to the ordering. 14 // Be sure to update these locations if you make any changes to the ordering.
15 enum ErrorCode { 15 enum ErrorCode {
16 OK = 0, 16 OK = 0,
17 PEER_IS_OFFLINE, 17 PEER_IS_OFFLINE,
18 SESSION_REJECTED, 18 SESSION_REJECTED,
19 INCOMPATIBLE_PROTOCOL, 19 INCOMPATIBLE_PROTOCOL,
20 AUTHENTICATION_FAILED, 20 AUTHENTICATION_FAILED,
21 CHANNEL_CONNECTION_ERROR, 21 CHANNEL_CONNECTION_ERROR,
22 SIGNALING_ERROR, 22 SIGNALING_ERROR,
23 SIGNALING_TIMEOUT, 23 SIGNALING_TIMEOUT,
24 HOST_OVERLOAD, 24 HOST_OVERLOAD,
25 UNKNOWN_ERROR, 25 UNKNOWN_ERROR,
26 }; 26 };
27 27
28 // Returns the literal string of |error|.
29 const char* ErrorCodeToString(ErrorCode error);
30
28 } // namespace protocol 31 } // namespace protocol
29 } // namespace remoting 32 } // namespace remoting
30 33
31 #endif // REMOTING_PROTOCOL_ERROR_H_ 34 #endif // REMOTING_PROTOCOL_ERROR_H_
OLDNEW
« no previous file with comments | « remoting/protocol/connection_to_host_impl.cc ('k') | remoting/protocol/errors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698