HomeSort by relevance Sort by last modified time
    Searched refs:subresource_use_rate_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/net/
referrer.h 40 void SetSubresourceUseRate(double rate) { subresource_use_rate_ = rate; }
45 // will increase the value of the expected subresource_use_rate_
49 // will diminish the expected subresource_use_rate_ (and will only be
55 double subresource_use_rate() const { return subresource_use_rate_; }
63 // Reduce the subresource_use_rate_ by the supplied factor, and return true
83 double subresource_use_rate_; member in class:chrome_browser_net::ReferrerValue
referrer.cc 18 // Smoothing parameter for updating subresource_use_rate_.
118 subresource_use_rate_ *= reduce_rate;
119 return subresource_use_rate_ > threshold;
168 subresource_use_rate_(kInitialConnectsExpectedValue) {
175 subresource_use_rate_ += 1 - kWeightingForOldConnectsExpectedValue;
179 subresource_use_rate_ *= kWeightingForOldConnectsExpectedValue;
183 // Value of subresource_use_rate_ should be sampled before this call.

Completed in 1303 milliseconds