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

Unified Diff: content/common/bluetooth/bluetooth_service.mojom

Issue 1775953004: bluetooth: Move writeValue to mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Moar cleanup Created 4 years, 9 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: content/common/bluetooth/bluetooth_service.mojom
diff --git a/content/common/bluetooth/bluetooth_service.mojom b/content/common/bluetooth/bluetooth_service.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..0e2e1809823281deb789dcd076cb78995858ceaa
--- /dev/null
+++ b/content/common/bluetooth/bluetooth_service.mojom
@@ -0,0 +1,15 @@
+// Copyright 2016 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.
+
+module content.mojom;
Ken Rockot(use gerrit already) 2016/03/09 19:31:26 Hmm. I understand you want to port to mojo first,
ortuno 2016/03/16 16:29:45 Done.
+
+import "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom";
+
+interface BluetoothService {
+
+RemoteCharacteristicWriteValue(
+ int32 frame_routing_id,
+ string characteristic_instance_id,
+ array<uint8> value) => (blink.mojom.WebBluetoothError error);
+};

Powered by Google App Engine
This is Rietveld 408576698