| Index: public/platform/WebBluetoothError.h
|
| diff --git a/public/platform/WebBluetoothError.h b/public/platform/WebBluetoothError.h
|
| index 9be6590deebeba9cc0cc017a47db77cfd9fec9d0..5af573cb05a8cc7171fde4b129021e31dd116b77 100644
|
| --- a/public/platform/WebBluetoothError.h
|
| +++ b/public/platform/WebBluetoothError.h
|
| @@ -2,31 +2,5 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WebBluetoothError_h
|
| -#define WebBluetoothError_h
|
| -
|
| -#include "WebString.h"
|
| -
|
| -namespace blink {
|
| -
|
| -// Error object when a bluetooth request can not be satisfied used to create
|
| -// DOMExceptions.
|
| -struct WebBluetoothError {
|
| - enum ErrorType {
|
| - NotFoundError,
|
| - SecurityError
|
| - };
|
| -
|
| - WebBluetoothError(ErrorType errorType, const WebString& message)
|
| - : errorType(errorType)
|
| - , message(message)
|
| - {
|
| - }
|
| -
|
| - ErrorType errorType;
|
| - WebString message;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // WebBluetoothError_h
|
| +// TODO(ortuno): Will be removed in https://crrev.com/1060643002
|
| +#include "public/platform/modules/bluetooth/WebBluetoothError.h"
|
|
|