#include "third_party/blink/renderer/modules/bluetooth/bluetooth_error.h"
#include "third_party/blink/public/mojom/bluetooth/web_bluetooth.mojom-blink.h"
#include "third_party/blink/renderer/core/dom/dom_exception.h"
#include "third_party/blink/renderer/platform/bindings/exception_code.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
namespace blink {
namespace {
const char kGATTServerNotConnectedBase[] = …;
}
String BluetoothError::CreateNotConnectedExceptionMessage(
BluetoothOperation operation) { … }
DOMException* BluetoothError::CreateNotConnectedException(
BluetoothOperation operation) { … }
DOMException* BluetoothError::CreateDOMException(
BluetoothErrorCode error,
const String& detailed_message) { … }
DOMException* BluetoothError::CreateDOMException(
mojom::blink::WebBluetoothResult error) { … }
}