Commit 3806730b authored by Pete Williamson's avatar Pete Williamson Committed by Commit Bot

Remove deprecated method - obtainSurfaceScope(<no args>)

As part of a three sided change, remove the old version
of the API now that it is no longer in use.

Bug: 1080884
Change-Id: If344fbbedadad6c5c807baad3443a3811860cdf2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199981Reviewed-by: default avatarJustin DeWitt <dewittj@chromium.org>
Commit-Queue: Peter Williamson <petewil@chromium.org>
Cr-Commit-Position: refs/heads/master@{#772046}
parent 4c67d747
...@@ -19,14 +19,6 @@ public interface ProcessScope { ...@@ -19,14 +19,6 @@ public interface ProcessScope {
*/ */
default void resetAccount() {} default void resetAccount() {}
/**
* Deprecated - Will remove once the other overload is in use.
**/
@Nullable
default SurfaceScope obtainSurfaceScope() {
return null;
}
/** /**
* Returns a SurfaceScope which should be one per Surface. That Surface can have multiple * Returns a SurfaceScope which should be one per Surface. That Surface can have multiple
* HybridListRenderers and SurfaceRenderers within its UI. * HybridListRenderers and SurfaceRenderers within its UI.
...@@ -35,6 +27,6 @@ public interface ProcessScope { ...@@ -35,6 +27,6 @@ public interface ProcessScope {
**/ **/
@Nullable @Nullable
default SurfaceScope obtainSurfaceScope(Context activityContext) { default SurfaceScope obtainSurfaceScope(Context activityContext) {
return obtainSurfaceScope(); return null;
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment