| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM (% our previous discussion about agent over-formatting)
if (receiver_.get()) {
*receiver_ = item;
}(And here)
const GURL& manifest_id) const {}(And here)
.RecordDismiss(
web_app::GenerateAppIdFromManifestId(ManifestId(manifest_id)),
base::Time::Now());(Some more cases of unrelated code lines reformatting)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
LGTM (% our previous discussion about agent over-formatting)
fixed, sorry!
if (receiver_.get()) {
*receiver_ = item;
}Erik Chen(And here)
Done
const GURL& manifest_id) const {}Erik Chen(And here)
Done
.RecordDismiss(
web_app::GenerateAppIdFromManifestId(ManifestId(manifest_id)),
base::Time::Now());(Some more cases of unrelated code lines reformatting)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
13 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/browser/download/download_ui_controller_unittest.cc
Insertions: 4, Deletions: 6.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/browser/dom_distiller/tab_utils_browsertest.cc
Insertions: 2, Deletions: 4.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/browser/ui/views/location_bar/location_bar_view.cc
Insertions: 1, Deletions: 0.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/browser/webapps/webapps_client_desktop.cc
Insertions: 5, Deletions: 8.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/browser/webapps/webapps_client_android.cc
Insertions: 6, Deletions: 3.
The diff is too large to show. Please review the diff.
```
Delete SecurityStateTabHelper
The components-side base class is now referenced by nothing: its
Chrome subclass is gone, every read goes through free functions or
SecurityStateModelDelegate, and the remaining sixteen #includes across
chrome/ were all dead. Remove the class, its build entry and the dead
includes. Test fixture names that echo the old class name are left
as-is; they test security state behavior, which is unchanged.
This completes the removal started in the previous CLs: security
state is computed on demand from the WebContents (components free
functions, enriched by chrome_security_state in Chrome), the two
navigation side effects live in the TabFeatures-owned
SecurityStateEventObserver, and nothing stores security state as
WebContents user data anymore.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |