Commit b39fee2c authored by maxbogue's avatar maxbogue Committed by Commit bot

Disable FAVICON_TRACKING in addition to SESSION.

BUG=378035

Review URL: https://codereview.chromium.org/537083002

Cr-Commit-Position: refs/heads/master@{#293348}
parent 2761abc6
...@@ -100,7 +100,7 @@ public enum ModelType { ...@@ -100,7 +100,7 @@ public enum ModelType {
} }
private boolean isNonInvalidationType() { private boolean isNonInvalidationType() {
if (this == SESSION && LibraryLoader.isInitialized()) { if ((this == SESSION || this == FAVICON_TRACKING) && LibraryLoader.isInitialized()) {
return FieldTrialList return FieldTrialList
.findFullName("AndroidSessionNotifications") .findFullName("AndroidSessionNotifications")
.equals("Disabled"); .equals("Disabled");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment