mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-13 10:27:05 +02:00
Also use an OrderedHashMap so they show up in the same order in UI. (cherry picked from commit a2a9a11466aba1ab357922e8bd0338222e3f4179)
17 lines
257 B
C++
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;
|
|
|
|
}
|