Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1007)

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothError.h

Issue 1922923002: bluetooth: Move requestDevice to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-separate-tests-request-device
Patch Set: Remove debug log Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/bluetooth/BluetoothError.h
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothError.h b/third_party/WebKit/Source/modules/bluetooth/BluetoothError.h
index 6fcf7de19542a5afef873db37475ad97c7869456..e05b4e40287260093c34c102d4a2ecd59cef8b2a 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothError.h
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothError.h
@@ -6,7 +6,7 @@
#define BluetoothError_h
#include "platform/heap/Handle.h"
-#include "public/platform/modules/bluetooth/WebBluetoothError.h"
+#include "public/platform/modules/bluetooth/web_bluetooth.mojom.h"
#include "wtf/Allocator.h"
namespace blink {
@@ -20,8 +20,8 @@ class BluetoothError {
STATIC_ONLY(BluetoothError);
public:
// Interface required by CallbackPromiseAdapter:
- using WebType = const WebBluetoothError&;
- static DOMException* take(ScriptPromiseResolver*, const WebBluetoothError&);
+ using WebType = const mojom::WebBluetoothError&;
+ static DOMException* take(ScriptPromiseResolver*, const mojom::WebBluetoothError&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698