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

Unified Diff: components/arc/arc_bridge_host_impl.cc

Issue 2559663002: Support focus highlight in Android window (Closed)
Patch Set: Rebase 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
« no previous file with comments | « components/arc/arc_bridge_host_impl.h ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b22068e5d4e208115c75f759d8d0fa7cee87658e..44d123afb0953e6c314dd1267cdff31d9ccff6a8 100644
--- a/components/arc/arc_bridge_host_impl.cc
+++ b/components/arc/arc_bridge_host_impl.cc
@@ -130,6 +130,12 @@ void ArcBridgeHostImpl::OnFileSystemInstanceReady(
std::move(file_system_ptr));
}
+void ArcBridgeHostImpl::OnFocusHighlightInstanceReady(
+ mojom::FocusHighlightInstancePtr focus_highlight_ptr) {
+ OnInstanceReady(ArcBridgeService::Get()->focus_highlight(),
hidehiko 2016/12/12 01:58:30 ArcBridgeService::Get() is being removed very soon
yawano 2017/01/11 10:31:33 Done.
+ std::move(focus_highlight_ptr));
+}
+
void ArcBridgeHostImpl::OnImeInstanceReady(mojom::ImeInstancePtr ime_ptr) {
OnInstanceReady(arc_bridge_service_->ime(), std::move(ime_ptr));
}
« no previous file with comments | « components/arc/arc_bridge_host_impl.h ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698