Commit 721c5c2f authored by Scott Violet's avatar Scott Violet Committed by Commit Bot

weblayer: increase allowed version skew to 4

This is necessary in the short term because we dropped 82.

BUG=1067701
TEST=none

Change-Id: Iee16ec4083e53cfa532ea5b2bbeb1111453d45cb
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2135338Reviewed-by: default avatarJohn Abd-El-Malek <jam@chromium.org>
Commit-Queue: Scott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#756358}
parent 03127f38
......@@ -48,7 +48,7 @@ public final class WebLayerFactoryImpl extends IWebLayerFactory.Stub {
@Override
public boolean isClientSupported() {
StrictModeWorkaround.apply();
return Math.abs(sClientMajorVersion - getImplementationMajorVersion()) <= 3;
return Math.abs(sClientMajorVersion - getImplementationMajorVersion()) <= 4;
}
/**
......
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