Merge "Update WM Ext aar to include java functional APIs" into tm-qpr-dev am: d57a294101

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/21256381

Change-Id: I8941ea1a9090accab130b2bff65e409e482606b2
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Chris Li
2023-02-06 13:46:31 +00:00
committed by Automerger Merge Worker
3 changed files with 59 additions and 0 deletions

View File

@@ -252,4 +252,37 @@ public class WindowAreaComponentImpl implements WindowAreaComponent,
} }
} }
} }
@Override
public void addRearDisplayPresentationStatusListener(
@NonNull Consumer<ExtensionWindowAreaStatus> consumer) {
throw new UnsupportedOperationException(
"addRearDisplayPresentationStatusListener is not supported in API_VERSION=2");
}
@Override
public void removeRearDisplayPresentationStatusListener(
@NonNull Consumer<ExtensionWindowAreaStatus> consumer) {
throw new UnsupportedOperationException(
"removeRearDisplayPresentationStatusListener is not supported in API_VERSION=2");
}
@Override
public void startRearDisplayPresentationSession(@NonNull Activity activity,
@NonNull Consumer<@WindowAreaSessionState Integer> consumer) {
throw new UnsupportedOperationException(
"startRearDisplayPresentationSession is not supported in API_VERSION=2");
}
@Override
public void endRearDisplayPresentationSession() {
throw new UnsupportedOperationException(
"endRearDisplayPresentationSession is not supported in API_VERSION=2");
}
@Override
public ExtensionWindowAreaPresentation getRearDisplayPresentation() {
throw new UnsupportedOperationException(
"getRearDisplayPresentation is not supported in API_VERSION=2");
}
} }

View File

@@ -2156,4 +2156,30 @@ public class SplitController implements JetpackTaskFragmentOrganizer.TaskFragmen
return configuration != null return configuration != null
&& configuration.windowConfiguration.getWindowingMode() == WINDOWING_MODE_PINNED; && configuration.windowConfiguration.getWindowingMode() == WINDOWING_MODE_PINNED;
} }
@Override
public ActivityOptions setLaunchingActivityStack(@NonNull ActivityOptions options,
@NonNull IBinder token) {
throw new UnsupportedOperationException(
"setLaunchingActivityStack is not supported in API_VERSION=2");
}
@Override
public void finishActivityStacks(@NonNull Set<IBinder> activityStackTokens) {
throw new UnsupportedOperationException(
"finishActivityStacks is not supported in API_VERSION=2");
}
@Override
public void invalidateTopVisibleSplitAttributes() {
throw new UnsupportedOperationException(
"invalidateTopVisibleSplitAttributes is not supported in API_VERSION=2");
}
@Override
public void updateSplitAttributes(@NonNull IBinder splitInfoToken,
@NonNull SplitAttributes splitAttributes) {
throw new UnsupportedOperationException(
"updateSplitAttributes is not supported in API_VERSION=2");
}
} }