mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Make AllowExperiments return false as it is not useful without telemetry
This commit is contained in:
parent
813140d8c7
commit
a8a28d4537
1 changed files with 4 additions and 1 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue