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

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

Issue 7824040: Pepper 3D API changes: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
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 5
6 /* From pp_errors.idl modified Sat Jul 16 16:50:26 2011. */ 6 /* From pp_errors.idl modified Sat Jul 16 16:50:26 2011. */
7 7
8 #ifndef PPAPI_C_PP_ERRORS_H_ 8 #ifndef PPAPI_C_PP_ERRORS_H_
9 #define PPAPI_C_PP_ERRORS_H_ 9 #define PPAPI_C_PP_ERRORS_H_
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 * This value indicates failure due to a file having been modified 78 * This value indicates failure due to a file having been modified
79 * unexpectedly. 79 * unexpectedly.
80 */ 80 */
81 PP_ERROR_FILECHANGED = -23, 81 PP_ERROR_FILECHANGED = -23,
82 /** This value indicates failure due to a time limit being exceeded. */ 82 /** This value indicates failure due to a time limit being exceeded. */
83 PP_ERROR_TIMEDOUT = -30, 83 PP_ERROR_TIMEDOUT = -30,
84 /** 84 /**
85 * This value indicates that the user cancelled rather than providing 85 * This value indicates that the user cancelled rather than providing
86 * expected input. 86 * expected input.
87 */ 87 */
88 PP_ERROR_USERCANCEL = -40 88 PP_ERROR_USERCANCEL = -40,
89 /**
90 * This value indicates that the graphics context was lost due to a
91 * power management event.
92 */
93 PP_ERROR_CONTEXT_LOST = -50
89 }; 94 };
90 /** 95 /**
91 * @} 96 * @}
92 */ 97 */
93 98
94 #endif /* PPAPI_C_PP_ERRORS_H_ */ 99 #endif /* PPAPI_C_PP_ERRORS_H_ */
95 100
OLDNEW
« no previous file with comments | « ppapi/c/dev/ppb_graphics_3d_dev.h ('k') | ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698