| Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTDescriptorInit.h
|
| diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTDescriptorInit.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTDescriptorInit.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..55fe8c4a0450b54aaf04142b3d468e1d1d38b43b
|
| --- /dev/null
|
| +++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTDescriptorInit.h
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +#ifndef WebBluetoothRemoteGATTDescriptorInit_h
|
| +#define WebBluetoothRemoteGATTDescriptorInit_h
|
| +
|
| +#include "public/platform/WebString.h"
|
| +#include "public/platform/WebVector.h"
|
| +
|
| +namespace blink {
|
| +
|
| +// Contains members corresponding to BluetoothGATTDescriptor
|
| +// attributes as specified in the IDL.
|
| +struct WebBluetoothRemoteGATTDescriptorInit {
|
| + WebBluetoothRemoteGATTDescriptorInit(const WebString& descriptorInstanceID,
|
| + const WebString& uuid)
|
| + : descriptorInstanceID(descriptorInstanceID), uuid(uuid) {}
|
| +
|
| + const WebString descriptorInstanceID;
|
| + const WebString uuid;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebBluetoothRemoteGATTDescriptorInit_h
|
|
|