| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
auto* provider = WebAppProvider::GetForWebApps(Reminder to check if any header includes can be removed.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
auto* provider = WebAppProvider::GetForWebApps(Reminder to check if any header includes can be removed.
Done - yup, actually did remember this time, we're good
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Hi folks! We got another bug filed for the mojo function that backed the "Launch" state checking, so I'm just removing the code completely. (it was already unhooked/not in use). TIA!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// TODO(crbug.com/477643920): Evaluate element behavior with illegal/invalid
// attributes. (Should we hide or grey out button, etc.).
mojom::blink::InstallOptionsPtr options = GetCheckedInstallOptions();
if (!options) {
// Illegal arguments will never be installed. Skip straight to the
// IsInstalled result so we can post the UpdateAppearanceTask.
OnIsInstalledResult(false);
return;
}This check is removed. Is that also intentional?
GetTranslatedMessageID(is_installed ? IDS_PERMISSION_REQUEST_LAUNCHIs this IDS still used? Should it be removed?
? PermissionIconType::kLaunchDitto. Is `kLaunch` still used? Should it be removed?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// TODO(crbug.com/477643920): Evaluate element behavior with illegal/invalid
// attributes. (Should we hide or grey out button, etc.).
mojom::blink::InstallOptionsPtr options = GetCheckedInstallOptions();
if (!options) {
// Illegal arguments will never be installed. Skip straight to the
// IsInstalled result so we can post the UpdateAppearanceTask.
OnIsInstalledResult(false);
return;
}This check is removed. Is that also intentional?
Yes. That was there to catch illegal attributes, which would never be installed, so we didn't need to check IsInstalled.
GetTranslatedMessageID(is_installed ? IDS_PERMISSION_REQUEST_LAUNCHIs this IDS still used? Should it be removed?
Done
? PermissionIconType::kLaunchDitto. Is `kLaunch` still used? Should it be removed?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
GURL install_target;you could 'solve' this for now by just checking the flag here, and returning nothing if it's off.
| Code-Review | +1 |
fine to remove, but maybe we don't need something this drastic with the flag protection
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
GURL install_target;you could 'solve' this for now by just checking the flag here, and returning nothing if it's off.
Hmm, to clarify, are you talking about the base::Feature flag? or the runtime enabled flag?
The base::Feature flag was actually enabled by default as part of our configuration for OT [1].
GURL install_target;Lia Hiscockyou could 'solve' this for now by just checking the flag here, and returning nothing if it's off.
Hmm, to clarify, are you talking about the base::Feature flag? or the runtime enabled flag?
The base::Feature flag was actually enabled by default as part of our configuration for OT [1].
// TODO(crbug.com/477643920): Evaluate element behavior with illegal/invalid
// attributes. (Should we hide or grey out button, etc.).
mojom::blink::InstallOptionsPtr options = GetCheckedInstallOptions();
if (!options) {
// Illegal arguments will never be installed. Skip straight to the
// IsInstalled result so we can post the UpdateAppearanceTask.
OnIsInstalledResult(false);
return;
}Lia HiscockThis check is removed. Is that also intentional?
Yes. That was there to catch illegal attributes, which would never be installed, so we didn't need to check IsInstalled.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |