/* * Copyright (c) 2025, Aliaksandr Kalenik * Copyright (c) 2025, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace WebView { enum class StorageOperationError : u8 { QuotaExceededError, }; // Error setting the storage item, or the old value if the operation was successful. using StorageSetResult = Variant>; }