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

Side by Side Diff: chromecast/base/error_codes.h

Issue 1154383006: Adding crash utilities to chromecast/crash. (Closed) Base URL: https://eureka-internal.googlesource.com/chromium/src@master
Patch Set: cast_shell_unittests not built for android Created 5 years, 6 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 | « chromecast/base/BUILD.gn ('k') | chromecast/base/error_codes.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 {
11 NO_ERROR = 0,
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 // Chromecast WebUI uses 19999 for END_OF_REBOOT_SECTION, so reserve it here.
26 END_OF_REBOOT_SECTION = 19999,
27
28 // misc [20000, 29999]
29 ERROR_ABORTED = 20000,
30 ERROR_LOST_PEER_CONNECTION = 20001,
31
32 ERROR_UNKNOWN = 30000,
33 };
34
35 // Gets the error code for the first idle screen.
36 ErrorCode GetInitialErrorCode();
37
38 // Sets the error code for the first idle screen. Returns true if set
39 // successfully.
40 bool SetInitialErrorCode(ErrorCode initial_error_code);
41
42 } // namespace chromecast
43
44 #endif // CHROMECAST_BASE_ERROR_CODES_H_
OLDNEW
« no previous file with comments | « chromecast/base/BUILD.gn ('k') | chromecast/base/error_codes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698