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

Side by Side Diff: ppapi/c/pp_errors.h

Issue 7285010: Implement an input event resource. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/c/pp_input_event.h » ('j') | ppapi/c/ppb_input_event.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_ */
OLDNEW
« no previous file with comments | « no previous file | ppapi/c/pp_input_event.h » ('j') | ppapi/c/ppb_input_event.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698