networkPredictionEnabled property
ChromeSetting
get
networkPredictionEnabled
If enabled, Chrome attempts to speed up your web browsing experience by
pre-resolving DNS entries and preemptively opening TCP and SSL connections
to servers. This preference only affects actions taken by Chrome's
internal prediction service. It does not affect webpage-initiated
prefectches or preconnects. This preference's value is a boolean,
defaulting to true
.
Implementation
ChromeSetting get networkPredictionEnabled =>
ChromeSetting.fromJS(_wrapped.networkPredictionEnabled);
set
networkPredictionEnabled
(ChromeSetting v)
Implementation
set networkPredictionEnabled(ChromeSetting v) {
_wrapped.networkPredictionEnabled = v.toJS;
}