| Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h
|
| diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h
|
| deleted file mode 100644
|
| index f3105ef796548f9b6d5f10cff4f9251d0f1d7a1f..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// 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 WebBluetoothRemoteGATTCharacteristicInit_h
|
| -#define WebBluetoothRemoteGATTCharacteristicInit_h
|
| -
|
| -#include "public/platform/WebString.h"
|
| -#include "public/platform/WebVector.h"
|
| -
|
| -namespace blink {
|
| -
|
| -// Contains members corresponding to BluetoothRemoteGATTCharacteristic
|
| -// attributes as specified in the IDL.
|
| -struct WebBluetoothRemoteGATTCharacteristicInit {
|
| - WebBluetoothRemoteGATTCharacteristicInit(
|
| - const WebString& serviceInstanceID,
|
| - const WebString& characteristicInstanceID,
|
| - const WebString& uuid,
|
| - uint32_t characteristicProperties)
|
| - : characteristicInstanceID(characteristicInstanceID),
|
| - serviceInstanceID(serviceInstanceID),
|
| - uuid(uuid),
|
| - characteristicProperties(characteristicProperties) {}
|
| -
|
| - const WebString characteristicInstanceID;
|
| - const WebString serviceInstanceID;
|
| - const WebString uuid;
|
| - const uint32_t characteristicProperties;
|
| - const WebVector<uint8_t> value;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // WebBluetoothRemoteGATTCharacteristicInit_h
|
|
|