1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

LibWeb: Return StringViews from CSS Token bracket-string getters

These don't need to be full Strings, so let's be lightweight.
This commit is contained in:
Sam Atkins 2023-02-11 15:54:53 +00:00 committed by Linus Groh
parent 562594c416
commit 09f7682feb
2 changed files with 20 additions and 20 deletions

View file

@ -1,6 +1,6 @@
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
* Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -142,8 +142,8 @@ public:
}
Type mirror_variant() const;
DeprecatedString bracket_string() const;
DeprecatedString bracket_mirror_string() const;
StringView bracket_string() const;
StringView bracket_mirror_string() const;
DeprecatedString to_deprecated_string() const;
DeprecatedString to_debug_string() const;