Index: third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp |
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp |
index 5c90934be5508432535b26883994f5be17dc4c58..07a1ac7bd1fd0f4a692a765a460307fe5b709b2c 100644 |
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp |
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp |
@@ -9,14 +9,14 @@ |
namespace blink { |
-DOMException* BluetoothError::take(ScriptPromiseResolver*, const WebBluetoothError& webError) |
+DOMException* BluetoothError::take(ScriptPromiseResolver*, const mojom::WebBluetoothError& webError) |
{ |
switch (webError) { |
- case WebBluetoothError::SUCCESS: |
+ case mojom::WebBluetoothError::SUCCESS: |
ASSERT_NOT_REACHED(); |
return DOMException::create(UnknownError); |
#define MAP_ERROR(enumeration, name, message) \ |
- case WebBluetoothError::enumeration: \ |
+ case mojom::WebBluetoothError::enumeration: \ |
return DOMException::create(name, message) |
// InvalidModificationErrors: |