summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h b/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h
index 0fd2d1bea43..863a98d6203 100644
--- a/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h
+++ b/chromium/third_party/blink/renderer/modules/bluetooth/bluetooth_uuid.h
@@ -5,7 +5,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_BLUETOOTH_BLUETOOTH_UUID_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_BLUETOOTH_BLUETOOTH_UUID_H_
-#include "third_party/blink/renderer/bindings/modules/v8/string_or_unsigned_long.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_typedefs.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
@@ -21,18 +20,12 @@ class BluetoothUUID final : public ScriptWrappable {
public:
// IDL exposed interface:
-#if defined(USE_BLINK_V8_BINDING_NEW_IDL_UNION)
static String getService(const V8BluetoothServiceUUID* name,
ExceptionState& exception_state);
static String getCharacteristic(const V8BluetoothCharacteristicUUID* name,
ExceptionState& exception_state);
static String getDescriptor(const V8BluetoothDescriptorUUID* name,
ExceptionState& exception_state);
-#else // defined(USE_BLINK_V8_BINDING_NEW_IDL_UNION)
- static String getService(StringOrUnsignedLong name, ExceptionState&);
- static String getCharacteristic(StringOrUnsignedLong name, ExceptionState&);
- static String getDescriptor(StringOrUnsignedLong name, ExceptionState&);
-#endif // defined(USE_BLINK_V8_BINDING_NEW_IDL_UNION)
static String canonicalUUID(unsigned alias);
};