OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 PPAPI_C_PP_ERRORS_H_ | 5 #ifndef PPAPI_C_PP_ERRORS_H_ |
6 #define PPAPI_C_PP_ERRORS_H_ | 6 #define PPAPI_C_PP_ERRORS_H_ |
7 | 7 |
8 /** | 8 /** |
9 * @file | 9 * @file |
10 * This file defines an enumeration of all PPAPI error codes. | 10 * This file defines an enumeration of all PPAPI error codes. |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 /** This value indicates failure due to insufficient storage quota. */ | 66 /** This value indicates failure due to insufficient storage quota. */ |
67 PP_ERROR_NOQUOTA = -10, | 67 PP_ERROR_NOQUOTA = -10, |
68 | 68 |
69 /** | 69 /** |
70 * This value indicates failure due to an action already being in | 70 * This value indicates failure due to an action already being in |
71 * progress. | 71 * progress. |
72 */ | 72 */ |
73 PP_ERROR_INPROGRESS = -11, | 73 PP_ERROR_INPROGRESS = -11, |
74 | 74 |
| 75 /** |
| 76 * The requested command is not supported by the browser. |
| 77 */ |
| 78 PP_ERROR_NOTSUPPORTED = -12, |
| 79 |
75 /** This value indicates failure due to a file that does not exist. */ | 80 /** This value indicates failure due to a file that does not exist. */ |
76 PP_ERROR_FILENOTFOUND = -20, | 81 PP_ERROR_FILENOTFOUND = -20, |
77 | 82 |
78 /** This value indicates failure due to a file that already exists. */ | 83 /** This value indicates failure due to a file that already exists. */ |
79 PP_ERROR_FILEEXISTS = -21, | 84 PP_ERROR_FILEEXISTS = -21, |
80 | 85 |
81 /** This value indicates failure due to a file that is too big. */ | 86 /** This value indicates failure due to a file that is too big. */ |
82 PP_ERROR_FILETOOBIG = -22, | 87 PP_ERROR_FILETOOBIG = -22, |
83 | 88 |
84 /** | 89 /** |
(...skipping 10 matching lines...) Expand all Loading... |
95 */ | 100 */ |
96 PP_ERROR_USERCANCEL = -40 | 101 PP_ERROR_USERCANCEL = -40 |
97 }; | 102 }; |
98 | 103 |
99 /** | 104 /** |
100 * @} | 105 * @} |
101 * End of addtogroup Enums | 106 * End of addtogroup Enums |
102 */ | 107 */ |
103 | 108 |
104 #endif /* PPAPI_C_PP_ERRORS_H_ */ | 109 #endif /* PPAPI_C_PP_ERRORS_H_ */ |
OLD | NEW |