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

Side by Side Diff: ppapi/api/pp_errors.idl

Issue 7789014: Fix out of sync pp_errors.idl and ppb_input_event.idl (Closed) Base URL: svn://chrome-svn/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
« no previous file with comments | « no previous file | ppapi/api/ppb_input_event.idl » ('j') | no next file with comments »
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 5
6 /** 6 /**
7 * This file defines an enumeration of all PPAPI error codes. 7 * This file defines an enumeration of all PPAPI error codes.
8 */ 8 */
9 9
10 /** 10 /**
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 * This value indicates failure due to a file having been modified 76 * This value indicates failure due to a file having been modified
77 * unexpectedly. 77 * unexpectedly.
78 */ 78 */
79 PP_ERROR_FILECHANGED = -23, 79 PP_ERROR_FILECHANGED = -23,
80 /** This value indicates failure due to a time limit being exceeded. */ 80 /** This value indicates failure due to a time limit being exceeded. */
81 PP_ERROR_TIMEDOUT = -30, 81 PP_ERROR_TIMEDOUT = -30,
82 /** 82 /**
83 * This value indicates that the user cancelled rather than providing 83 * This value indicates that the user cancelled rather than providing
84 * expected input. 84 * expected input.
85 */ 85 */
86 PP_ERROR_USERCANCEL = -40 86 PP_ERROR_USERCANCEL = -40,
87 /**
88 * This value indicates that the graphics context was lost due to a
89 * power management event.
90 */
91 PP_ERROR_CONTEXT_LOST = -50
87 }; 92 };
88 93
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/ppb_input_event.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698