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

Unified Diff: components/arc/arc_bridge_service.cc

Issue 2078263002: Example Bluetooth ARC++ test changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@arc_tests
Patch Set: Created 4 years, 6 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
« no previous file with comments | « components/arc/arc_bridge_service.h ('k') | components/arc/bluetooth/arc_bluetooth_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_service.cc
diff --git a/components/arc/arc_bridge_service.cc b/components/arc/arc_bridge_service.cc
index 7992def82feac31479424e453698a369e2f1f8c4..ae7b74d94153772f2fee0295b347c830e78eaf85 100644
--- a/components/arc/arc_bridge_service.cc
+++ b/components/arc/arc_bridge_service.cc
@@ -101,6 +101,14 @@ void ArcBridgeService::RemoveObserver(Observer* observer) {
observer_list_.RemoveObserver(observer);
}
+mojom::BluetoothInstance* ArcBridgeService::bluetooth_instance() {
+ return bluetooth_ptr_.get();
+}
+
+int32_t ArcBridgeService::bluetooth_version() const {
+ return bluetooth_ptr_.version();
+}
+
void ArcBridgeService::OnAppInstanceReady(mojom::AppInstancePtr app_ptr) {
DCHECK(CalledOnValidThread());
temporary_app_ptr_ = std::move(app_ptr);
« no previous file with comments | « components/arc/arc_bridge_service.h ('k') | components/arc/bluetooth/arc_bluetooth_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698