blob: 650d7d38add36fa11746df43fee89e0c0b6a7e6b [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SHARING_MESSAGE_PREF_NAMES_H_
#define COMPONENTS_SHARING_MESSAGE_PREF_NAMES_H_
#include "build/build_config.h"
#include "components/sharing_message/buildflags.h"
namespace prefs {
inline constexpr char kSharingVapidKey[] = "sharing.vapid_key";
inline constexpr char kSharingFCMRegistration[] = "sharing.fcm_registration";
inline constexpr char kSharingLocalSharingInfo[] = "sharing.local_sharing_info";
// A flag to enable/disable the Shared Clipboard feature which enables users to
// send text across devices.
inline constexpr char kSharedClipboardEnabled[] =
"browser.shared_clipboard_enabled";
#if BUILDFLAG(ENABLE_CLICK_TO_CALL)
// A flag to enable/disable the Click to Call feature which enables users to
// send phone numbers from desktop to Android phones.
inline constexpr char kClickToCallEnabled[] = "browser.click_to_call_enabled";
#endif // BUILDFLAG(ENABLE_CLICK_TO_CALL)
} // namespace prefs
#endif // COMPONENTS_SHARING_MESSAGE_PREF_NAMES_H_