-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Refactor FXIOS-13463 #29256 [Swift 6 Migration] Final changes to web engine package #29660
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9c15020
b6d4674
98ebffc
baacdaf
b71cf8b
1d99e45
17110ed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,13 @@ import Common | |
import Foundation | ||
|
||
/// Helper to get the metadata fetched out of a `WKEngineSession` | ||
@MainActor | ||
protocol MetadataFetcherHelper { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should something that "fetches" data really be fully main actor isolated? I imagine it has to do some background stuff... 🤔 (same concern for the annotation below also) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh myyyy 😆 Ok yep keep on as you were then hahaha!! Just ignore me 😂 |
||
var delegate: MetadataFetcherDelegate? { get set } | ||
func fetch(fromSession session: WKEngineSession, url: URL) | ||
} | ||
|
||
@MainActor | ||
protocol MetadataFetcherDelegate: AnyObject { | ||
func didLoad(pageMetadata: EnginePageMetadata) | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.