constants.h 575 B

1234567891011121314151617181920
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef ASH_QUICK_PAIR_COMMON_CONSTANTS_H_
  5. #define ASH_QUICK_PAIR_COMMON_CONSTANTS_H_
  6. #include "base/component_export.h"
  7. #include "device/bluetooth/public/cpp/bluetooth_uuid.h"
  8. namespace ash {
  9. namespace quick_pair {
  10. COMPONENT_EXPORT(QUICK_PAIR_COMMON)
  11. extern const device::BluetoothUUID kFastPairBluetoothUuid;
  12. } // namespace quick_pair
  13. } // namespace ash
  14. #endif // ASH_QUICK_PAIR_COMMON_CONSTANTS_H_