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

Unified Diff: components/arc/arc_bridge_host_impl.cc

Issue 2559663002: Support focus highlight in Android window (Closed)
Patch Set: Created 4 years 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: components/arc/arc_bridge_host_impl.cc
diff --git a/components/arc/arc_bridge_host_impl.cc b/components/arc/arc_bridge_host_impl.cc
index 1fc93b50b4c56ba12637286fda5f5d915c8ef9e9..403516fe94abd03f3ad68f050858ccc19daf2fe6 100644
--- a/components/arc/arc_bridge_host_impl.cc
+++ b/components/arc/arc_bridge_host_impl.cc
@@ -128,6 +128,12 @@ void ArcBridgeHostImpl::OnFileSystemInstanceReady(
std::move(file_system_ptr));
}
+void ArcBridgeHostImpl::OnFocusHighlightInstanceReady(
+ mojom::FocusHighlightInstancePtr focus_highlight_ptr) {
+ OnInstanceReady(ArcBridgeService::Get()->focus_highlight(),
+ std::move(focus_highlight_ptr));
+}
+
void ArcBridgeHostImpl::OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) {
OnInstanceReady(ArcBridgeService::Get()->ime(), std::move(ime_ptr));
}

Powered by Google App Engine
This is Rietveld 408576698