/* * Copyright (C) 2006-2020 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #pragma once #include "root.h" #include "wtf/EnumTraits.h" namespace WebCore { enum ExceptionCode { // DOMException error names (https://webidl.spec.whatwg.org/#idl-DOMException-error-names). // Those need to be kept in sync with the array in DOMException.cpp. IndexSizeError, // Deprecated. Use RangeError instead. HierarchyRequestError, WrongDocumentError, InvalidCharacterError, NoModificationAllowedError, NotFoundError, NotSupportedError, InUseAttributeError, InvalidStateError, SyntaxError, InvalidModificationError, NamespaceError, InvalidAccessError, // Deprecated. use NotAllowedError instead. TypeMismatchError, // Deprecated. Use TypeError instead. SecurityError, NetworkError, AbortError, URLMismatchError, QuotaExceededError, TimeoutError, InvalidNodeTypeError, DataCloneError, EncodingError, NotReadableError, UnknownError, ConstraintError, DataError, TransactionInactiveError, ReadonlyError, VersionError, OperationError, NotAllowedError, // Simple exceptions (https://webidl.spec.whatwg.org/#idl-exceptions). RangeError, TypeError, JSSyntaxError, // Different from DOM SYNTAX_ERR. // Non-standard error. StackOverflowError, OutOfMemoryError, // Used to indicate to the bindings that a JS exception was thrown below and it should be propagated. ExistingExceptionError, }; } // namespace WebCore namespace WTF { template<> struct EnumTraits { using values = EnumValues< WebCore::ExceptionCode, WebCore::ExceptionCode::IndexSizeError, WebCore::ExceptionCode::HierarchyRequestError, WebCore::ExceptionCode::WrongDocumentError, WebCore::ExceptionCode::InvalidCharacterError, WebCore::ExceptionCode::NoModificationAllowedError, WebCore::ExceptionCode::NotFoundError, WebCore::ExceptionCode::NotSupportedError, WebCore::ExceptionCode::InUseAttributeError, WebCore::ExceptionCode::InvalidStateError, WebCore::ExceptionCode::SyntaxError, WebCore::ExceptionCode::InvalidModificationError, WebCore::ExceptionCode::NamespaceError, WebCore::ExceptionCode::InvalidAccessError, WebCore::ExceptionCode::TypeMismatchError, WebCore::ExceptionCode::SecurityError, WebCore::ExceptionCode::NetworkError, WebCore::ExceptionCode::AbortError, WebCore::ExceptionCode::URLMismatchError, WebCore::ExceptionCode::QuotaExceededError, WebCore::ExceptionCode::TimeoutError, WebCore::ExceptionCode::InvalidNodeTypeError, WebCore::ExceptionCode::DataCloneError, WebCore::ExceptionCode::EncodingError, WebCore::ExceptionCode::NotReadableError, WebCore::ExceptionCode::UnknownError, WebCore::ExceptionCode::ConstraintError, WebCore::ExceptionCode::DataError, WebCore::ExceptionCode::TransactionInactiveError, WebCore::ExceptionCode::ReadonlyError, WebCore::ExceptionCode::VersionError, WebCore::ExceptionCode::OperationError, WebCore::ExceptionCode::NotAllowedError, WebCore::ExceptionCode::RangeError, WebCore::ExceptionCode::TypeError, WebCore::ExceptionCode::JSSyntaxError, WebCore::ExceptionCode::StackOverflowError, WebCore::ExceptionCode::ExistingExceptionError>; }; } // namespace WTF ption Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/src/deps/skia/include/gpu/GrBackendDrawableInfo.h (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-04-03skia WIPjarred/canvasGravatar Jarred Sumner 1-0/+44
2022-04-03wipGravatar Jarred Sumner 120-20/+8988
2022-04-03[bun.js] Expose `ImageData` globallyGravatar Jarred Sumner 12-2/+1237
2022-04-02More typesGravatar Jarred Sumner 2-39/+3998
2022-04-02Add more typingsGravatar Jarred Sumner 1-2/+416
2022-04-02Add more tests for Node FSGravatar Jarred Sumner 4-1/+60
2022-04-02[bun.js] fs.readSync & fs.writeSync should return just the numberGravatar Jarred Sumner 1-24/+57
2022-04-02[bun.js] Support `mode` and `flags` as integer args in fs.openSync (instead o...Gravatar Jarred Sumner 1-0/+6
2022-04-02Update base.zigGravatar Jarred Sumner 1-0/+1
2022-04-02Fix GC bug when reading TypedArray from user inputGravatar Jarred Sumner 1-6/+36
2022-04-02s/Buffer/TypedArrayGravatar Jarred Sumner 1-17/+17
2022-04-02Fix mmap on macOS x64Gravatar Jarred Sumner 2-29/+27