Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / cryptotoken / errorcodes.js
index ff231cd..3733ab8 100644 (file)
@@ -3,7 +3,7 @@
 // found in the LICENSE file.
 
 /**
- * @fileoverview Error codes reported by top-level request handlers.
+ * @fileoverview Errors reported by top-level request handlers.
  */
 'use strict';
 
@@ -20,3 +20,12 @@ var ErrorCodes = {
   'DEVICE_INELIGIBLE': 4,
   'TIMEOUT': 5
 };
+
+/**
+ * An error object for responses
+ * @typedef {{
+ *   errorCode: ErrorCodes,
+ *   errorMessage: (?string|undefined)
+ * }}
+ */
+var U2fError;