Make AllowExperiments return false as it is not useful without telemetry

This commit is contained in:
adeshkp 2019-01-14 09:37:50 -05:00 committed by Roy Tam
commit a8a28d4537

View file

@ -105,7 +105,10 @@ public:
bool EnforceAssocReq() { return mEnforceAssocReq; }
bool IsPersistentHttpsCachingEnabled() { return mEnablePersistentHttpsCaching; }
bool AllowExperiments() { return mAllowExperiments; }
// Since telemetry has been removed, experiments should also not be allowed.
// Making this function return `false` for now, it will be cleaned up later.
bool AllowExperiments() { return false; }
bool IsSpdyEnabled() { return mEnableSpdy; }
bool IsHttp2Enabled() { return mHttp2Enabled; }