summaryrefslogtreecommitdiff
path: root/services/java/com
diff options
context:
space:
mode:
author Shubang Lu <shubang@google.com> 2022-01-21 18:04:09 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2022-01-21 18:04:09 +0000
commitbcf19024d32bb2b1f096bd786ceb4aff905c3ccc (patch)
tree6fb7500b9b09d8b72077c480dcdb7a140c2f19d7 /services/java/com
parenta1e7a448f94c525eb5aab0b7637ccb9f57262db4 (diff)
parenta0ac8f6713c8c515e2881134c448893fbfa31043 (diff)
Merge "TIAF: rename IApp -> InteractiveApp."
Diffstat (limited to 'services/java/com')
-rw-r--r--services/java/com/android/server/SystemServer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index 233f2ff574df..a7b7d1aafb71 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -194,7 +194,7 @@ import com.android.server.tracing.TracingServiceProxy;
import com.android.server.trust.TrustManagerService;
import com.android.server.tv.TvInputManagerService;
import com.android.server.tv.TvRemoteService;
-import com.android.server.tv.interactive.TvIAppManagerService;
+import com.android.server.tv.interactive.TvInteractiveAppManagerService;
import com.android.server.tv.tunerresourcemanager.TunerResourceManagerService;
import com.android.server.twilight.TwilightService;
import com.android.server.uri.UriGrantsManagerService;
@@ -2379,8 +2379,8 @@ public final class SystemServer implements Dumpable {
if (mPackageManager.hasSystemFeature(PackageManager.FEATURE_LIVE_TV)
|| mPackageManager.hasSystemFeature(PackageManager.FEATURE_LEANBACK)) {
- t.traceBegin("StartTvIAppManager");
- mSystemServiceManager.startService(TvIAppManagerService.class);
+ t.traceBegin("StartTvInteractiveAppManager");
+ mSystemServiceManager.startService(TvInteractiveAppManagerService.class);
t.traceEnd();
}