diff options
author | Ruchir Rastogi <ruchirr@google.com> | 2020-01-21 23:56:08 -0800 |
---|---|---|
committer | Ruchir Rastogi <ruchirr@google.com> | 2020-01-24 12:05:37 -0800 |
commit | f60603ccd79f26ea930bc4a8d6af8640389cedc5 (patch) | |
tree | 603e932efe8c1ce89bf79c77b47e3b6348f245e5 /core/java | |
parent | 8d2276744562de164e7660866126e3eeb49bfed8 (diff) |
Delete CarStatsPuller class
The CarStatsPuller class is not needed because CarStatsService will now
directly register the VMS_CLIENT_STATS puller with StatsManager.
Test: m -j
Bug: 148123503
Change-Id: Icd46af829c8f559315f72feab1eda3b687c57148
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/Android.bp | 5 | ||||
-rw-r--r-- | core/java/com/android/internal/car/ICarStatsService.aidl | 31 |
2 files changed, 0 insertions, 36 deletions
diff --git a/core/java/Android.bp b/core/java/Android.bp index 9a8e130436f8..fb27f74211fb 100644 --- a/core/java/Android.bp +++ b/core/java/Android.bp @@ -7,8 +7,3 @@ filegroup { name: "IDropBoxManagerService.aidl", srcs: ["com/android/internal/os/IDropBoxManagerService.aidl"], } - -filegroup { - name: "ICarStatsService.aidl", - srcs: ["com/android/internal/car/ICarStatsService.aidl"], -} diff --git a/core/java/com/android/internal/car/ICarStatsService.aidl b/core/java/com/android/internal/car/ICarStatsService.aidl deleted file mode 100644 index 170b448ba33f..000000000000 --- a/core/java/com/android/internal/car/ICarStatsService.aidl +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2019 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.android.internal.car; - -import android.os.StatsLogEventWrapper; - -/** - * Interface for pulling statsd atoms from automotive devices. - * - * @hide - */ -interface ICarStatsService { - /** - * Pull the specified atom. Results will be sent to statsd when complete. - */ - StatsLogEventWrapper[] pullData(int atomId); -} |