Home | History | Annotate | Download | only in history

Lines Matching defs:typed_count

30 // URLs - any URLs with a typed_count >= this threshold will be throttled.
34 // N, we sync up every Nth update (i.e. when typed_count % N == 0).
142 if (url->typed_count() > 0) {
252 int typed_count = row->typed_count();
264 typed_count > 0 &&
265 (typed_count < kTypedUrlVisitThrottleThreshold ||
266 (typed_count % kTypedUrlVisitThrottleMultiple) == 0));
272 DCHECK_GT(url.typed_count(), 0);
343 int typed_count = 0;
355 ++typed_count;
361 DCHECK(typed_count > 0);
363 if (typed_count > kMaxTypedUrlVisits) {
365 skip_count = typed_count - kMaxTypedUrlVisits;
398 // even though the visit's typed_count > 0 (corrupted typed_count). So