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

Unified Diff: components/arc/arc_bridge_host_impl.cc

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: add FakeArcTraceAgent for linux and test 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 b22068e5d4e208115c75f759d8d0fa7cee87658e..ed3c39d09350e3c673a9800a772929139ebb942a 100644
--- a/components/arc/arc_bridge_host_impl.cc
+++ b/components/arc/arc_bridge_host_impl.cc
@@ -206,6 +206,11 @@ void ArcBridgeHostImpl::OnWallpaperInstanceReady(
OnInstanceReady(arc_bridge_service_->wallpaper(), std::move(wallpaper_ptr));
}
+void ArcBridgeHostImpl::OnTraceInstanceReady(
+ mojom::TraceInstancePtr trace_ptr) {
+ OnInstanceReady(arc_bridge_service_->trace(), std::move(trace_ptr));
+}
+
void ArcBridgeHostImpl::OnClosed() {
DCHECK(thread_checker_.CalledOnValidThread());
VLOG(1) << "Mojo connection lost";

Powered by Google App Engine
This is Rietveld 408576698