iOS: Delete FlutterPlatformViewsController.layerPoolSize (flutter/engine#56806)

This field is unused in the codebase/tests.

[C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
This commit is contained in:
Chris Bracken 2024-11-25 21:23:09 -08:00 committed by GitHub
parent 214afb3f08
commit 80fa8a5908
2 changed files with 0 additions and 7 deletions

View File

@ -125,9 +125,6 @@
- (size_t)embeddedViewCount;
// TODO(cbracken): Delete. This is unused.
- (size_t)layerPoolSize;
// Returns the `FlutterPlatformView`'s `view` object associated with the view_id.
//
// If the `PlatformViewsController` does not contain any `FlutterPlatformView` object or

View File

@ -538,10 +538,6 @@ BOOL canApplyBlurBackdrop = YES;
return self.compositionOrder.size();
}
- (size_t)layerPoolSize {
return self.layerPool->size();
}
- (UIView*)platformViewForId:(int64_t)viewId {
return [self flutterTouchInterceptingViewForId:viewId].embeddedView;
}