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

Side by Side Diff: Source/core/dom/ExceptionCode.h

Issue 17761003: Remove FileException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile warning Created 7 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 | « Source/core/dom/DOMExceptions.in ('k') | Source/core/fileapi/FileError.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public 5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 // These are IDB-specific. 69 // These are IDB-specific.
70 IDBNotFoundError, 70 IDBNotFoundError,
71 UnknownError, 71 UnknownError,
72 ConstraintError, 72 ConstraintError,
73 DataError, 73 DataError,
74 TransactionInactiveError, 74 TransactionInactiveError,
75 ReadOnlyError, 75 ReadOnlyError,
76 VersionError, 76 VersionError,
77 77
78 // File system
79 // FIXME: Consolidate these once https://crbug.com/252233 is fixed.
80 FSNotFoundError,
81 FSSecurityError,
82 FSAbortError,
83 FSNotReadableError,
84 FSEncodingError,
85 FSNoModificationAllowedError,
86 FSInvalidStateError,
87 FSSyntaxError,
88 FSInvalidModificationError,
89 FSQuotaExceededError,
90 FSTypeMismatchError,
91 FSPathExistsError,
92
78 // WebIDL exception types, handled by the binding layer. 93 // WebIDL exception types, handled by the binding layer.
79 // FIXME: Add GeneralError, EvalError, etc. when implemented in the bind ings. 94 // FIXME: Add GeneralError, EvalError, etc. when implemented in the bind ings.
80 TypeError, 95 TypeError,
81 }; 96 };
82 97
83 } // namespace WebCore 98 } // namespace WebCore
84 99
85 #endif // ExceptionCode_h 100 #endif // ExceptionCode_h
OLDNEW
« no previous file with comments | « Source/core/dom/DOMExceptions.in ('k') | Source/core/fileapi/FileError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698