summaryrefslogtreecommitdiff
path: root/services/java
diff options
context:
space:
mode:
author shubang <shubang@google.com> 2022-01-09 22:58:07 -0800
committer Shubang Lu <shubang@google.com> 2022-01-20 18:34:58 +0000
commita0ac8f6713c8c515e2881134c448893fbfa31043 (patch)
tree7ce7e79fe8bfb47874e1ffc36a26c43b6fcd67f8 /services/java
parent137875812f7f874ee2a30d550d2ca5545229d476 (diff)
TIAF: rename IApp -> InteractiveApp.
based on advice from API Council And unhide TvInteractiveAppView and TvInteractiveAppInfo Bug: 213836031 Bug: 205738783 Test: atest android.media.tv.interactive.cts.TvInteractiveAppViewTest Change-Id: I6b97f89dd29efed1b4248faae366fbf1a56b0614
Diffstat (limited to 'services/java')
-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 4b21454bdc00..599e90b7e4a5 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;
@@ -2367,8 +2367,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();
}