Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/flutter_master.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3e6e996f9eff50d77214d37c1c5f8b71bcc0d559
6d96e66d0f70891fd912753abd201534aa41c0a4
4 changes: 4 additions & 0 deletions packages/webview_flutter/webview_flutter_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

* Fixes unit tests to run on latest `master` version of Flutter.

## 0.1.0+1

* Adds an explanation of registering the implementation in the README.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -929,10 +929,12 @@ class MockIFrameElement extends _i1.Mock implements _i2.IFrameElement {
void setPointerCapture(int? pointerId) =>
super.noSuchMethod(Invocation.method(#setPointerCapture, [pointerId]),
returnValueForMissingStub: null);
@override
// TODO(ditman): Undo this manual change when the return type change to
// Future<void> has propagated to stable.
/*@override
void requestFullscreen() =>
super.noSuchMethod(Invocation.method(#requestFullscreen, []),
returnValueForMissingStub: null);
returnValueForMissingStub: null);*/
@override
void after(Object? nodes) =>
super.noSuchMethod(Invocation.method(#after, [nodes]),
Expand Down