OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 |
| 5 #include "content/child/bluetooth/bluetooth_primary_service_request.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 BluetoothPrimaryServiceRequest::BluetoothPrimaryServiceRequest( |
| 10 blink::WebString device_instance_id, |
| 11 blink::WebString service_uuid, |
| 12 blink::WebBluetoothGetPrimaryServiceCallbacks* callbacks) |
| 13 : device_instance_id(device_instance_id), |
| 14 service_uuid(service_uuid), |
| 15 callbacks(callbacks) { |
| 16 } |
| 17 |
| 18 BluetoothPrimaryServiceRequest::~BluetoothPrimaryServiceRequest() { |
| 19 } |
| 20 |
| 21 } // namespace content |
OLD | NEW |