| Index: content/child/bluetooth/bluetooth_primary_service_request.cc
|
| diff --git a/content/child/bluetooth/bluetooth_primary_service_request.cc b/content/child/bluetooth/bluetooth_primary_service_request.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3b420172a81724db986cc7865e298b9ab32424cf
|
| --- /dev/null
|
| +++ b/content/child/bluetooth/bluetooth_primary_service_request.cc
|
| @@ -0,0 +1,21 @@
|
| +// 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/child/bluetooth/bluetooth_primary_service_request.h"
|
| +
|
| +namespace content {
|
| +
|
| +BluetoothPrimaryServiceRequest::BluetoothPrimaryServiceRequest(
|
| + blink::WebString device_instance_id,
|
| + blink::WebString service_uuid,
|
| + blink::WebBluetoothGetPrimaryServiceCallbacks* callbacks)
|
| + : device_instance_id(device_instance_id),
|
| + service_uuid(service_uuid),
|
| + callbacks(callbacks) {
|
| +}
|
| +
|
| +BluetoothPrimaryServiceRequest::~BluetoothPrimaryServiceRequest() {
|
| +}
|
| +
|
| +} // namespace content
|
|
|