| // 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 BluetoothError_h |
| #define BluetoothError_h |
| |
| #include "platform/heap/Handle.h" |
| #include "wtf/Allocator.h" |
| |
| namespace blink { |
| |
| class DOMException; |
| class ScriptPromiseResolver; |
| |
| // BluetoothError is used with CallbackPromiseAdapter to receive |
| // WebBluetoothResult responses. See CallbackPromiseAdapter class comments. |
| class BluetoothError { |
| STATIC_ONLY(BluetoothError); |
| |
| public: |
| // Interface required by CallbackPromiseAdapter: |
| using WebType = |
| int32_t /* Corresponds to WebBluetoothResult in web_bluetooth.mojom */; |
| static DOMException* take( |
| ScriptPromiseResolver*, |
| int32_t |
| error /* Corresponds to WebBluetoothResult in web_bluetooth.mojom */); |
| }; |
| |
| } // namespace blink |
| |
| #endif // BluetoothError_h |