This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
[Multiwindow] Renderers receive view IDs as argument #36593
Merged
auto-submit
merged 22 commits into
flutter:main
from
dkwingsmt:isolate-renderer-from-view
Nov 17, 2022
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
57971ec
Impl
dkwingsmt 067ed3e
Format
dkwingsmt ea49a51
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt ad4d87e
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt 8c577ac
TODO comments
dkwingsmt d716feb
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt fabcba0
Fix compile
dkwingsmt 5ded32f
Better empty indication
dkwingsmt 42b179a
Change invalid ID to -1
dkwingsmt 3de585e
fix doc
dkwingsmt a462ef5
Change to default view
dkwingsmt 593b0c5
Better doc
dkwingsmt 187be45
Update doc of FlutterFrameInfo
dkwingsmt 5259d4d
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt f17ce1d
Change to ID
dkwingsmt 52acabf
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt 8e7c29e
Address comment
dkwingsmt 6b9ca1b
Fix comment
dkwingsmt 637c36d
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt 6d87fa6
Merge remote-tracking branch 'origin/main' into isolate-renderer-from…
dkwingsmt c4373ec
To assertion
dkwingsmt 9272daa
Fix compile
dkwingsmt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is the view registered with the view provider?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any other places. The view provider is just a protocol/facade over other classes, and will have other methods to register views, which is not shown as a view provider.
In the real application the view provider is
macos/FlutterEngine, which is the source-of-truth of the set of views.