chromium/extensions/browser/api/bluetooth_low_energy/utils.cc

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

#include "extensions/browser/api/bluetooth_low_energy/utils.h"

#include <stddef.h>
#include <iterator>
#include <vector>

#include "base/check.h"

namespace extensions {
namespace api {
namespace bluetooth_low_energy {

namespace {

// Converts a list of CharacteristicProperty to a base::Value::List of strings.
base::Value::List CharacteristicPropertiesToList(
    const std::vector<CharacteristicProperty> properties) {}

}  // namespace

base::Value::Dict CharacteristicToValue(Characteristic& from) {}

base::Value::Dict DescriptorToValue(Descriptor& from) {}

}  // namespace bluetooth_low_energy
}  // namespace api
}  // namespace extensions