21 lines
926 B
C
21 lines
926 B
C
/* Copyright (c) 2025 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_COMMON_PREF_NAMES_H_
|
|
#define BRAVE_COMMON_PREF_NAMES_H_
|
|
|
|
// Boolean pref indicating whether the main web view areas in normal browser
|
|
// windows are given margins and rounded corners. The main web view areas
|
|
// include the primary tab contents, split view tab contents, and side panel
|
|
// contents.
|
|
inline constexpr char kWebViewRoundedCorners[] =
|
|
"brave.web_view_rounded_corners";
|
|
|
|
// Boolean pref indicating whether the app menu button should use the subtle
|
|
// (outline-only) Brave logo instead of the full color logo.
|
|
inline constexpr char kBraveSubtleAppMenuLogo[] = "brave.subtle_app_menu_logo";
|
|
|
|
#endif // BRAVE_COMMON_PREF_NAMES_H_
|