summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/enrichedcall/stub
diff options
context:
space:
mode:
authorroldenburg <roldenburg@google.com>2017-07-11 15:41:00 -0700
committerEric Erfanian <erfanian@google.com>2017-07-12 09:42:17 -0700
commit5e685035897403343fc6a005ebf869894c344e13 (patch)
treec7593cdd45ef87d3b5a18265194601761f8e0480 /java/com/android/dialer/enrichedcall/stub
parenta33fbaf4077f712253e8ba62f491d095c8cbc82c (diff)
Move VideoShareSession to third_party to remove bad cast in VideoShareManager
It was odd that we were casting and was causing some crashes. This CL makes things work more as is typical in Dialer. We previously did not do this because there are some parts of the VideoShareSession which are not open-sourceable. Turns out we can simplify those parts out of the interface. Bug: 63523694 Test: existing tests PiperOrigin-RevId: 161593028 Change-Id: I8f1379fc46f4e9d41413b731787dbf37e0901da9
Diffstat (limited to 'java/com/android/dialer/enrichedcall/stub')
-rw-r--r--java/com/android/dialer/enrichedcall/stub/EnrichedCallManagerStub.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/java/com/android/dialer/enrichedcall/stub/EnrichedCallManagerStub.java b/java/com/android/dialer/enrichedcall/stub/EnrichedCallManagerStub.java
index 1f2b00514..de95e0725 100644
--- a/java/com/android/dialer/enrichedcall/stub/EnrichedCallManagerStub.java
+++ b/java/com/android/dialer/enrichedcall/stub/EnrichedCallManagerStub.java
@@ -27,6 +27,7 @@ import com.android.dialer.enrichedcall.EnrichedCallManager;
import com.android.dialer.enrichedcall.Session;
import com.android.dialer.enrichedcall.historyquery.proto.HistoryResult;
import com.android.dialer.enrichedcall.videoshare.VideoShareListener;
+import com.android.dialer.enrichedcall.videoshare.VideoShareSession;
import com.android.dialer.multimedia.MultimediaData;
import java.util.Collections;
import java.util.List;
@@ -169,6 +170,14 @@ public final class EnrichedCallManagerStub implements EnrichedCallManager {
return Session.NO_SESSION_ID;
}
+ @MainThread
+ @Nullable
+ @Override
+ public VideoShareSession getVideoShareSession(long sessionId) {
+ Assert.isMainThread();
+ return null;
+ }
+
@Override
public void endVideoShareSession(long sessionId) {}
}