diff options
author | 2022-04-03 02:42:08 -0700 | |
---|---|---|
committer | 2022-04-03 02:42:08 -0700 | |
commit | 4a19a3f07f1887903e5638a3be167f0c7b377ba3 (patch) | |
tree | 24b5ebd36910d19e690352cf343943e0e6b0459d /src/javascript/jsc/bindings/webcore/JSImageSmoothingQuality.h | |
parent | e62c7dc9e5709b1ce54838aee30668a4c358a528 (diff) | |
download | bun-4a19a3f07f1887903e5638a3be167f0c7b377ba3.tar.gz bun-4a19a3f07f1887903e5638a3be167f0c7b377ba3.tar.zst bun-4a19a3f07f1887903e5638a3be167f0c7b377ba3.zip |
wip
Diffstat (limited to 'src/javascript/jsc/bindings/webcore/JSImageSmoothingQuality.h')
-rw-r--r-- | src/javascript/jsc/bindings/webcore/JSImageSmoothingQuality.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/javascript/jsc/bindings/webcore/JSImageSmoothingQuality.h b/src/javascript/jsc/bindings/webcore/JSImageSmoothingQuality.h new file mode 100644 index 000000000..92b922ef1 --- /dev/null +++ b/src/javascript/jsc/bindings/webcore/JSImageSmoothingQuality.h @@ -0,0 +1,34 @@ +/* + This file is part of the WebKit open source project. + This file has been generated by generate-bindings.pl. DO NOT MODIFY! + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#pragma once + +#include "ImageSmoothingQuality.h" +#include "JSDOMConvertEnumeration.h" + +namespace WebCore { + +String convertEnumerationToString(ImageSmoothingQuality); +template<> JSC::JSString* convertEnumerationToJS(JSC::JSGlobalObject&, ImageSmoothingQuality); + +template<> std::optional<ImageSmoothingQuality> parseEnumeration<ImageSmoothingQuality>(JSC::JSGlobalObject&, JSC::JSValue); +template<> const char* expectedEnumerationValues<ImageSmoothingQuality>(); + +} // namespace WebCore |