Files
serenity/Userland/Libraries/LibWebView/UserAgent.h
Andreas Kling e715c973cc LibWebView: Update User-Agent spoofing strings with new versions
Also use an OrderedHashMap so they show up in the same order in UI.

(cherry picked from commit a2a9a11466aba1ab357922e8bd0338222e3f4179)
2024-11-10 20:06:23 -05:00

17 lines
257 B
C++

/*
* Copyright (c) 2023, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/HashMap.h>
#include <AK/StringView.h>
namespace WebView {
extern OrderedHashMap<StringView, StringView> const user_agents;
}