aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authornchalko <nchalko@google.com>2019-01-04 11:17:12 -0800
committerNick Chalko <nchalko@google.com>2019-02-12 22:07:08 -0800
commitffe86338164df563234b2308f9bce1f0a30794f9 (patch)
treecbd4c2124879187c915b6976729ab85e236a57cd /common
parent2edaccd4827bb8eed4b3e52b44ae63c221cdf93e (diff)
downloadTV-ffe86338164df563234b2308f9bce1f0a30794f9.tar.gz
Move creating a tuner setup intent to the TunerInputController
PiperOrigin-RevId: 227884397 Change-Id: I9a437ce6438b45fdabc034aabc0e05c4aae55e85
Diffstat (limited to 'common')
-rw-r--r--common/src/com/android/tv/common/BaseApplication.java4
-rw-r--r--common/src/com/android/tv/common/BaseSingletons.java4
2 files changed, 0 insertions, 8 deletions
diff --git a/common/src/com/android/tv/common/BaseApplication.java b/common/src/com/android/tv/common/BaseApplication.java
index 871e4613..45c32567 100644
--- a/common/src/com/android/tv/common/BaseApplication.java
+++ b/common/src/com/android/tv/common/BaseApplication.java
@@ -18,7 +18,6 @@ package com.android.tv.common;
import android.annotation.TargetApi;
import android.content.Context;
-import android.content.Intent;
import android.os.Build;
import android.os.StrictMode;
import android.support.annotation.VisibleForTesting;
@@ -105,7 +104,4 @@ public abstract class BaseApplication extends DaggerApplication implements BaseS
}
return mRecordingStorageStatusManager;
}
-
- @Override
- public abstract Intent getTunerSetupIntent(Context context);
}
diff --git a/common/src/com/android/tv/common/BaseSingletons.java b/common/src/com/android/tv/common/BaseSingletons.java
index f5ab636c..10530617 100644
--- a/common/src/com/android/tv/common/BaseSingletons.java
+++ b/common/src/com/android/tv/common/BaseSingletons.java
@@ -16,8 +16,6 @@
package com.android.tv.common;
-import android.content.Context;
-import android.content.Intent;
import com.android.tv.common.buildtype.HasBuildType;
import com.android.tv.common.flags.has.HasCloudEpgFlags;
import com.android.tv.common.flags.has.HasConcurrentDvrPlaybackFlags;
@@ -31,6 +29,4 @@ public interface BaseSingletons
Clock getClock();
RecordingStorageStatusManager getRecordingStorageStatusManager();
-
- Intent getTunerSetupIntent(Context context);
}