Does this approach seem like a reasonable solution?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Does this approach seem like a reasonable solution?
Sorry for missing this earlier. The approach here of making sure that we show _some_ Chrome-controlled string in the domain label for view-source URLs LGTM.
| 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. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
bool SchemeIsViewSource() const { return SchemeIs(url::kViewSourceScheme); }I'd rather not add this and just use `SchemeIs(url::kViewSourceSceheme)`
It's a bit arbitrary but this doesn't feel "webby" to me (e.g. we don't have a SchemeIsSteam() for example)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
bool SchemeIsViewSource() const { return SchemeIs(url::kViewSourceScheme); }I'd rather not add this and just use `SchemeIs(url::kViewSourceSceheme)`
It's a bit arbitrary but this doesn't feel "webby" to me (e.g. we don't have a SchemeIsSteam() for example)
| 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. |
LOG(WARNING) << "**** OnTabDragUpdated";Remove before submitting
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
LOG(WARNING) << "**** OnTabDragUpdated";Alison GaleRemove before submitting
Whoops, slipped in from another debug client
| 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. |
| Code-Review | +1 |
| 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. |
[SxS] Show view source domain label
This impacts hovercards, the mini toolbar, tab search, and the split new
tab page. Currently we just show the page title and no domain for
view-source pages. For view-source pages on a domain that doesn't
resolve, the title is just the domain. For ones where the page can be
loaded, it has a title of "view-source: page.com". This follows a
similar pattern as used in the blob and local file to make clear that it
is a view source. Another way of solving it would be to update the title
to have view-source but that would be off when the source can't be
viewed.
https://screenshot.googleplex.com/T3Ei2UcqLnDBFkh
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |