File tree 2 files changed +2
-5
lines changed
packages/video_player/video_player_android 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ class MiniController extends ValueNotifier<VideoPlayerValue> {
219
219
Completer <void >? _creatingCompleter;
220
220
StreamSubscription <dynamic >? _eventSubscription;
221
221
222
- /// The id of a texture that hasn't been initialized.
222
+ /// The id of a player that hasn't been initialized.
223
223
@visibleForTesting
224
224
static const int kUninitializedPlayerId = - 1 ;
225
225
int _playerId = kUninitializedPlayerId;
@@ -424,7 +424,7 @@ class _VideoPlayerState extends State<VideoPlayer> {
424
424
void initState () {
425
425
super .initState ();
426
426
_playerId = widget.controller.playerId;
427
- // Need to listen for initialization events since the actual texture ID
427
+ // Need to listen for initialization events since the actual player ID
428
428
// becomes available after asynchronous initialization finishes.
429
429
widget.controller.addListener (_listener);
430
430
}
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ import 'package:video_player_platform_interface/video_player_platform_interface.
13
13
14
14
import 'messages.g.dart' ;
15
15
16
- // TODO(FirentisTFW): Remove the ignore and rename parameters when adding support for platform views.
17
- // ignore_for_file: avoid_renaming_method_parameters
18
-
19
16
/// An Android implementation of [VideoPlayerPlatform] that uses the
20
17
/// Pigeon-generated [VideoPlayerApi] .
21
18
class AndroidVideoPlayer extends VideoPlayerPlatform {
You can’t perform that action at this time.
0 commit comments