DefaultSettings.h 664 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2023, Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/StringView.h>
  8. namespace Browser {
  9. static constexpr StringView default_homepage_url = "resource://html/misc/welcome.html"sv;
  10. static constexpr StringView default_new_tab_url = "about:newtab"sv;
  11. static constexpr StringView default_color_scheme = "auto"sv;
  12. static constexpr bool default_enable_content_filters = true;
  13. static constexpr bool default_show_bookmarks_bar = true;
  14. static constexpr bool default_close_download_widget_on_finish = false;
  15. static constexpr bool default_allow_autoplay_on_all_websites = false;
  16. }