| Index: content/common/bluetooth/bluetooth_scan_filter.cc
|
| diff --git a/content/common/bluetooth/bluetooth_scan_filter.cc b/content/common/bluetooth/bluetooth_scan_filter.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..be8786d16402af6a494fdca49fe684ba1ff53e55
|
| --- /dev/null
|
| +++ b/content/common/bluetooth/bluetooth_scan_filter.cc
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/common/bluetooth/bluetooth_scan_filter.h"
|
| +
|
| +namespace content {
|
| +
|
| +BluetoothScanFilter::BluetoothScanFilter() : services() {
|
| +}
|
| +
|
| +BluetoothScanFilter::BluetoothScanFilter(
|
| + const std::vector<device::BluetoothUUID>& services)
|
| + : services(services) {
|
| +}
|
| +
|
| +BluetoothScanFilter::~BluetoothScanFilter() {
|
| +}
|
| +
|
| +} // namespace content
|
|
|