Chromium Code Reviews| Index: public/platform/WebBluetoothError.h |
| diff --git a/public/platform/WebBluetoothError.h b/public/platform/WebBluetoothError.h |
| index 9be6590deebeba9cc0cc017a47db77cfd9fec9d0..47ba0016ee611bfd4bc148abcf430265882686ca 100644 |
| --- a/public/platform/WebBluetoothError.h |
| +++ b/public/platform/WebBluetoothError.h |
| @@ -2,31 +2,4 @@ |
| // 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 |
| +#include "public/platform/modules/bluetooth/WebBluetoothError.h" |
|
scheib
2015/04/13 17:46:34
ditto
|