UserAgent.h 343 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2023, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/HashMap.h>
  8. #include <AK/Optional.h>
  9. #include <AK/StringView.h>
  10. namespace WebView {
  11. extern OrderedHashMap<StringView, StringView> const user_agents;
  12. Optional<StringView> normalize_user_agent_name(StringView);
  13. }