UserAgent.h 250 B

12345678910111213141516
  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/StringView.h>
  9. namespace WebView {
  10. extern HashMap<StringView, StringView> const user_agents;
  11. }