1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:48:13 +00:00

LibWebView: Rename find_search_engine to find_search_engine_by_name

We will also need to search by URL in the Serenity chrome.
This commit is contained in:
Timothy Flynn 2023-10-23 16:35:55 -04:00 committed by Andreas Kling
parent d5ca8209bf
commit c8c3d00615
4 changed files with 5 additions and 5 deletions

View file

@ -18,6 +18,6 @@ struct SearchEngine {
ReadonlySpan<SearchEngine> search_engines();
SearchEngine const& default_search_engine();
Optional<SearchEngine const&> find_search_engine(StringView name);
Optional<SearchEngine const&> find_search_engine_by_name(StringView name);
}