summaryrefslogtreecommitdiff
path: root/profcollectd
diff options
context:
space:
mode:
authorStephen Crane <cranes@google.com>2022-01-19 17:49:46 +0000
committerStephen Crane <cranes@google.com>2022-01-19 09:55:42 -0800
commit23e8e5319b72ea818f0259d4da08e7a9cb32770a (patch)
tree26ddf489962fc09c558166780283121d90a647cc /profcollectd
parent2f5dc1b054f03c9a54fa3de59f7a282993040e85 (diff)
downloadextras-23e8e5319b72ea818f0259d4da08e7a9cb32770a.tar.gz
Revert^2 "[libprofcollectd] Fix binder import path"
Import from the binder crate root instead of binder::public_api for compatibility with the new crate structure. Re-landing change: I773767a3ae1cd797fe937a4f72f9588d63119e4c Test: m Bug: 196056781 Change-Id: Ida3e7a8a230df87a3e00f291086b11fa0be67af6
Diffstat (limited to 'profcollectd')
-rw-r--r--profcollectd/libprofcollectd/service.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/profcollectd/libprofcollectd/service.rs b/profcollectd/libprofcollectd/service.rs
index 701edff6..0199c105 100644
--- a/profcollectd/libprofcollectd/service.rs
+++ b/profcollectd/libprofcollectd/service.rs
@@ -17,7 +17,7 @@
//! ProfCollect Binder service implementation.
use anyhow::{anyhow, Context, Error, Result};
-use binder::public_api::Result as BinderResult;
+use binder::Result as BinderResult;
use binder::Status;
use profcollectd_aidl_interface::aidl::com::android::server::profcollect::IProfCollectd::IProfCollectd;
use std::ffi::CString;