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

Unified 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: Clean-up and rename MinidumpManager 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/base/BUILD.gn ('k') | chromecast/base/error_codes.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/base/error_codes.h
diff --git a/chromecast/base/error_codes.h b/chromecast/base/error_codes.h
new file mode 100644
index 0000000000000000000000000000000000000000..d309d9cdf519a9abc2dae33ea22dca6de8e82785
--- /dev/null
+++ b/chromecast/base/error_codes.h
@@ -0,0 +1,45 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROMECAST_BASE_ERROR_CODES_H_
+#define CHROMECAST_BASE_ERROR_CODES_H_
+
+namespace chromecast {
+
+enum ErrorCode {
+ NO_ERROR = 0,
+
+ // web_content [1, 9999]
+ ERROR_WEB_CONTENT_RENDER_VIEW_GONE = 1,
+ ERROR_WEB_CONTENT_NAME_NOT_RESOLVED,
+ ERROR_WEB_CONTENT_INTERNET_DISCONNECTED,
+
+ // reboot [10000, 19999]
+ // The following error codes do not reset the volume when the page is
+ // launched. Add codes that do not reset the volume before ERROR_REBOOT_NOW.
+ ERROR_REBOOT_NOW = 10000,
+ ERROR_REBOOT_FDR,
+ ERROR_REBOOT_OTA,
+ ERROR_REBOOT_IDLE,
+ // END_OF_REBOOT_SECTION is defined in content/shell/ui/resources/script.js
gunsch 2015/06/18 18:35:57 note: this file path doesn't exist, it might be a
slan 2015/06/22 04:45:03 Great catch. This value is defined in an internal
+ // So reserve 19999 here.
+ END_OF_REBOOT_SECTION = 19999,
+
+ // misc [20000, 29999]
+ ERROR_ABORTED = 20000,
+ ERROR_LOST_PEER_CONNECTION = 20001,
+
+ ERROR_UNKNOWN = 30000,
+};
+
+// Gets the error code for the first idle screen.
+ErrorCode GetInitialErrorCode();
+
+// Sets the error code for the first idle screen. Returns true if set
+// successfully.
+bool SetInitialErrorCode(ErrorCode initial_error_code);
+
+} // namespace chromecast
+
+#endif // CHROMECAST_BASE_ERROR_CODES_H_
« 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