Index: device/bluetooth/bluetooth_out_of_band_pairing_data.h |
diff --git a/device/bluetooth/bluetooth_out_of_band_pairing_data.h b/device/bluetooth/bluetooth_out_of_band_pairing_data.h |
deleted file mode 100644 |
index 1b45bb0b9d233938d9ee21a553e94821d0660127..0000000000000000000000000000000000000000 |
--- a/device/bluetooth/bluetooth_out_of_band_pairing_data.h |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// Copyright (c) 2012 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 DEVICE_BLUETOOTH_BLUETOOTH_OUT_OF_BAND_PAIRING_DATA_H_ |
-#define DEVICE_BLUETOOTH_BLUETOOTH_OUT_OF_BAND_PAIRING_DATA_H_ |
- |
-#include "base/basictypes.h" |
- |
-namespace device { |
- |
-const size_t kBluetoothOutOfBandPairingDataSize = 16; |
- |
-// A simple structure representing the data required to perform Out Of Band |
-// Pairing. See |
-// http://mclean-linsky.net/joel/cv/Simple%20Pairing_WP_V10r00.pdf |
-struct BluetoothOutOfBandPairingData { |
- // Simple Pairing Hash C. |
- uint8 hash[kBluetoothOutOfBandPairingDataSize]; |
- |
- // Simple Pairing Randomizer R. |
- uint8 randomizer[kBluetoothOutOfBandPairingDataSize]; |
-}; |
- |
-} // namespace device |
- |
-#endif // DEVICE_BLUETOOTH_BLUETOOTH_OUT_OF_BAND_PAIRING_DATA_H_ |