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

  /external/chromium_org/components/domain_reliability/
context.cc 45 // If there is nothing to report (no beacons and all request counters are 0),
48 if (beacons.empty() && successful_requests == 0 && failed_requests == 0)
52 for (BeaconConstIterator it = beacons.begin(); it != beacons.end(); ++it)
59 resource_value->Set("beacons", beacons_value);
66 uploading_beacons_size = beacons.size();
72 // data but keep beacons and request counts added after the upload started.
74 BeaconIterator begin = beacons.begin();
76 beacons.erase(begin, end);
84 if (beacons.empty()
104 std::deque<DomainReliabilityBeacon> beacons; member in class:domain_reliability::DomainReliabilityContext::ResourceState
    [all...]
context_unittest.cc 77 BeaconVector beacons; local
78 context_.GetQueuedDataForTesting(index, &beacons, NULL, NULL);
79 return beacons.empty();
149 BeaconVector beacons; local
150 context_.GetQueuedDataForTesting(0, &beacons, NULL, NULL);
151 EXPECT_EQ(1u, beacons.size());
165 "\"resource_reports\":[{\"beacons\":[{\"http_response_code\":200,"
monitor_unittest.cc 82 BeaconVector beacons; local
83 context_->GetQueuedDataForTesting(index, &beacons, NULL, NULL);
84 return beacons.size();
234 BeaconVector beacons; local
235 context_->GetQueuedDataForTesting(kAlwaysReportIndex, &beacons, NULL, NULL);
236 EXPECT_TRUE(beacons[0].server_ip.empty());
256 // Initially the monitor should have just the test context, with no beacons.
301 BeaconVector beacons; local
302 context_->GetQueuedDataForTesting(kAlwaysReportIndex, &beacons, NULL, NULL);
303 EXPECT_EQ(net::OK, beacons[0].chrome_error)
    [all...]

Completed in 89 milliseconds