| Index: public/platform/WebBluetooth.h
|
| diff --git a/public/platform/WebBluetooth.h b/public/platform/WebBluetooth.h
|
| index 5a117dabb65c0fc65342c335b83e857ed694cf8a..5e4ea4d9dbdbf9e49a8f3370a17975dc2851dece 100644
|
| --- a/public/platform/WebBluetooth.h
|
| +++ b/public/platform/WebBluetooth.h
|
| @@ -2,29 +2,5 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WebBluetooth_h
|
| -#define WebBluetooth_h
|
| -
|
| -#include "public/platform/WebCallbacks.h"
|
| -
|
| -namespace blink {
|
| -
|
| -struct WebBluetoothDevice;
|
| -struct WebBluetoothError;
|
| -
|
| -// Success and failure callbacks for requestDevice.
|
| -// WebBluetoothDevice and WebBluetoothError object ownership is transfered.
|
| -typedef WebCallbacks<WebBluetoothDevice, WebBluetoothError> WebBluetoothRequestDeviceCallbacks;
|
| -
|
| -class WebBluetooth {
|
| -public:
|
| - virtual ~WebBluetooth() { }
|
| -
|
| - // Requests a bluetooth device.
|
| - // WebBluetoothRequestDeviceCallbacks ownership transferred to the client.
|
| - virtual void requestDevice(WebBluetoothRequestDeviceCallbacks*) = 0;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // WebBluetooth_h
|
| +// TODO(ortuno): Will be removed in https://crrev.com/1060643002
|
| +#include "public/platform/modules/bluetooth/WebBluetooth.h"
|
|
|