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

Unified Diff: components/arc/arc_bridge_host_impl.cc

Issue 2400163003: arc: enable Android tracing in verified-boot mode (Closed)
Patch Set: Use struct instead of pair to save category data and fix lints Created 4 years, 2 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: 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 94e558985ae12a6a58b9245d9dd0ce197672afc9..aed98fccf45fcf5296cf66b26a844cde30e0ae22 100644
--- a/components/arc/arc_bridge_host_impl.cc
+++ b/components/arc/arc_bridge_host_impl.cc
@@ -200,6 +200,11 @@ void ArcBridgeHostImpl::OnWallpaperInstanceReady(
std::move(wallpaper_ptr));
}
+void ArcBridgeHostImpl::OnTraceInstanceReady(
Yusuke Sato 2016/10/12 05:58:12 sort
shunhsingou 2016/12/22 04:04:34 Removed
+ mojom::TraceInstancePtr trace_ptr) {
+ OnInstanceReady(ArcBridgeService::Get()->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