Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
deleted file mode 100644 |
index 1e4c34efdacc5bc15be737ee534eeb5702bb01df..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-// Copyright 2014 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 WebBluetoothDeviceInit_h |
-#define WebBluetoothDeviceInit_h |
- |
-#include "public/platform/WebString.h" |
-#include "public/platform/WebVector.h" |
- |
-namespace blink { |
- |
-// Information provided by the platform to initialize BluetoothDevice objects |
-// with attributes as specified in BluetoothDevice.idl. |
-struct WebBluetoothDeviceInit { |
- WebBluetoothDeviceInit(const WebString& id, const WebString& name) |
- : id(id), name(name) {} |
- |
- // Members corresponding to BluetoothDevice attributes as specified in IDL. |
- const WebString id; |
- const WebString name; |
-}; |
- |
-} // namespace blink |
- |
-#endif // WebBluetoothDeviceInit_h |