OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROMECAST_BASE_ERROR_CODES_H_ | |
6 #define CHROMECAST_BASE_ERROR_CODES_H_ | |
7 | |
8 namespace chromecast { | |
9 | |
10 enum ErrorCode { | |
alokp
2015/06/15 17:51:48
nit: I think "Code" suffix is not necessary.
gunsch
2015/06/15 18:05:59
To all of Alok's comments here: I'd actually lean
slan
2015/06/16 14:57:48
To keep this CL as clean as possible, this will be
| |
11 NO_ERROR = 0, | |
alokp
2015/06/15 17:51:48
nit: ERROR_NONE
slan
2015/06/16 14:57:49
Keeping it for now.
| |
12 | |
13 // web_content [1, 9999] | |
14 ERROR_WEB_CONTENT_RENDER_VIEW_GONE = 1, | |
15 ERROR_WEB_CONTENT_NAME_NOT_RESOLVED, | |
16 ERROR_WEB_CONTENT_INTERNET_DISCONNECTED, | |
17 | |
18 // reboot [10000, 19999] | |
19 // The following error codes do not reset the volume when the page is | |
20 // launched. Add codes that do not reset the volume before ERROR_REBOOT_NOW. | |
21 ERROR_REBOOT_NOW = 10000, | |
22 ERROR_REBOOT_FDR, | |
23 ERROR_REBOOT_OTA, | |
24 ERROR_REBOOT_IDLE, | |
25 // END_OF_REBOOT_SECTION is defined in content/shell/ui/resources/script.js | |
26 // So reserve 19999 here. | |
27 END_OF_REBOOT_SECTION = 19999, | |
28 | |
29 // misc [20000, 29999] | |
30 ERROR_ABORTED = 20000, | |
31 ERROR_LOST_PEER_CONNECTION = 20001, | |
32 | |
33 // The volume is reset on unknown error. | |
alokp
2015/06/15 17:51:48
The comment about volume is not clear to me.
slan
2015/06/16 14:57:48
I agree, this seems to be the wrong place for this
| |
34 ERROR_UNKNOWN = 30000, | |
35 }; | |
36 | |
37 // Gets the error code for the first idle screen. | |
38 ErrorCode GetInitialErrorCode(); | |
39 | |
40 // Sets the error code for the first idle screen. Returns true if set | |
41 // successfully. | |
42 bool SetInitialErrorCode(ErrorCode initial_error_code); | |
43 | |
44 } // namespace chromecast | |
45 | |
46 #endif // CHROMECAST_BASE_ERROR_CODES_H_ | |
OLD | NEW |