chromium/components/sharing_message/pref_names.h

// 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[] =;
inline constexpr char kSharingFCMRegistration[] =;
inline constexpr char kSharingLocalSharingInfo[] =;

// A flag to enable/disable the Shared Clipboard feature which enables users to
// send text across devices.
inline constexpr char kSharedClipboardEnabled[] =;

#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[] =;
#endif  // BUILDFLAG(ENABLE_CLICK_TO_CALL)

}  // namespace prefs

#endif  // COMPONENTS_SHARING_MESSAGE_PREF_NAMES_H_