Home | History | Annotate | Download | only in base

Lines Matching refs:num_max

317 // Helper for GarbageCollection.  If |cookie_its->size() > num_max|, remove the
318 // |num_max - num_purge| most recently accessed cookies from cookie_its.
325 // than num_max), true otherwise.
327 size_t num_max,
331 DCHECK_LE(num_purge, num_max);
332 if (cookie_its->size() > num_max) {
335 num_purge += cookie_its->size() - num_max;