-
Notifications
You must be signed in to change notification settings - Fork 143
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
Mojom implementation of window.h5vcc.accessibility #5214
Conversation
97a33bc
to
d95cf3c
Compare
69b1f5f
to
d406bf8
Compare
starboard/android/shared/accessibility_get_text_to_speech_settings.h
Outdated
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.h
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.cc
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.cc
Outdated
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.cc
Outdated
Show resolved
Hide resolved
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.
I made a first pass - mostly LGTM but left a few minor comments.
cobalt/browser/h5vcc_accessibility/public/mojom/h5vcc_accessibility.mojom
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.cc
Outdated
Show resolved
Hide resolved
nit: please keep the subject line of the commit message to 50 characters, if you can: https://cbea.ms/git-commit/#limit-50. |
d406bf8
to
7f5aee6
Compare
7f2f21e
to
22a1573
Compare
Builds break, because
Will relocate the dependency. Still waiting for Kabuki's to provide a loader to test |
4e2ca53
to
0654373
Compare
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.cc
Outdated
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.cc
Outdated
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.h
Show resolved
Hide resolved
fd4abef
to
9b922e6
Compare
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.
LGTM aside for a couple nits around the todo comments. Please let Andrew approve as well before merging, though.
Thanks for figuring this out!
cobalt/browser/h5vcc_accessibility/public/mojom/h5vcc_accessibility.mojom
Outdated
Show resolved
Hide resolved
Please also just double check that this all builds correctly:
|
9b922e6
to
224ba7b
Compare
cobalt/browser/h5vcc_accessibility/public/mojom/h5vcc_accessibility.mojom
Show resolved
Hide resolved
third_party/blink/renderer/modules/cobalt/h5vcc_accessibility/h_5_vcc_accessibility.h
Show resolved
Hide resolved
224ba7b
to
ad3a041
Compare
Thanks Holden, I made sure that linux build passes as well. |
ad3a041
to
fab6ee4
Compare
The IsTextToSpeechEnabledSync Mojo method is not yet implemented for Starboard platforms but we should at least run the callback with a stub value. We are currently seeing a crash on the main branch because the callback is getting destroyed without first being run or its binding getting closed. Thanks joeltine for flagging. This is a fix-forward from youtube#5214. b/391708407
The IsTextToSpeechEnabledSync Mojo method is not yet implemented for Starboard platforms but we should at least run the callback with a stub value. We are currently seeing a crash on the main branch because the callback is getting destroyed without first being run or its binding getting closed. Thanks joeltine for flagging. This is a fix-forward from #5214. b/391708407
Breaks circular dependency between H5vccAccessibilityImpl and CobaltTextToSpeechHelper through an observer interface pattern implemented in the interface TextToSpeechObserver.
H5vccAccessibilityImpl implements TextToSpeechObserver to receive state changes, CobaltTextToSpeechHelper maintains observer list without concrete H5vccAccessibilityImpl dependencies.
State queries flow: H5vccAccessibilityImpl → CobaltTextToSpeechHelper.
Notifications flow: CobaltTextToSpeechHelper → TextToSpeechObserver (H5vccAccessibilityImpl).
Test:
https://paste.googleplex.com/5925041131487232
Tested with Kabuki's loader for both APIs, see evidence in the ticket.
b/391708407