chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_characteristic_properties.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/bluetooth/bluetooth_characteristic_properties.h"

namespace blink {

bool BluetoothCharacteristicProperties::broadcast() const {}

bool BluetoothCharacteristicProperties::read() const {}

bool BluetoothCharacteristicProperties::writeWithoutResponse() const {}

bool BluetoothCharacteristicProperties::write() const {}

bool BluetoothCharacteristicProperties::notify() const {}

bool BluetoothCharacteristicProperties::indicate() const {}

bool BluetoothCharacteristicProperties::authenticatedSignedWrites() const {}

bool BluetoothCharacteristicProperties::reliableWrite() const {}

bool BluetoothCharacteristicProperties::writableAuxiliaries() const {}

BluetoothCharacteristicProperties::BluetoothCharacteristicProperties(
    uint32_t device_properties) {}

}  // namespace blink