| Commit-Queue | +1 |
@emil...@chromium.org, can you PTAL as @rdevlin...@chromium.org is OOO until next week?
@mpet...@chromium.org for Badge Auth context.
Thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Thanks Aida! Just one comment to make sure we are still testing the desired behavior, since I'm not familiar with lock screen installations
if (IsExtensionInstalledOnLockScreen(kExtensionId)) {
observer.WaitForExtensionLoaded();
}What happens when the extension is not installed on lock screen? Before we were always waiting for extension to be loaded, and now not anymore.
Is this wanted? Or should extensions be always be installed on lock screen here?
if (IsExtensionInstalledOnLockScreen(kExtensionId)) {
observer.WaitForExtensionUnloaded();
}similar comment
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (IsExtensionInstalledOnLockScreen(kExtensionId)) {
observer.WaitForExtensionLoaded();
}What happens when the extension is not installed on lock screen? Before we were always waiting for extension to be loaded, and now not anymore.
Is this wanted? Or should extensions be always be installed on lock screen here?
Good catch, this was a copy-paste mistake here.
We should only wait if it's not yet installed.
if (IsExtensionInstalledOnLockScreen(kExtensionId)) {
observer.WaitForExtensionUnloaded();
}Aida Zolićsimilar comment
We only wait for the extension to be unloaded if it is still installed.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |