diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc index 62fc5f4d193955..821a5c18b47fca 100644 --- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc +++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc @@ -2293,7 +2293,7 @@ TEST_F(BrowsingDataRemoverTest, DomainReliability_ProtectedOrigins) { EXPECT_EQ(CLEAR_CONTEXTS, tester.last_clear_mode()); } -// TODO(ttuttle): This isn't actually testing the no-monitor case, since +// TODO(juliatuttle): This isn't actually testing the no-monitor case, since // BrowsingDataRemoverTest now creates one unconditionally, since it's needed // for some unrelated test cases. This should be fixed so it tests the no- // monitor case again. diff --git a/chrome/browser/domain_reliability/OWNERS b/chrome/browser/domain_reliability/OWNERS index 695ce9df78a9ff..a54916d6e0d4c4 100644 --- a/chrome/browser/domain_reliability/OWNERS +++ b/chrome/browser/domain_reliability/OWNERS @@ -1,5 +1,5 @@ davidben@chromium.org mmenke@chromium.org szym@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org rdsmith@chromium.org diff --git a/chrome/browser/net/net_error_tab_helper.cc b/chrome/browser/net/net_error_tab_helper.cc index cf27cabb85e075..3a54c684b70d0d 100644 --- a/chrome/browser/net/net_error_tab_helper.cc +++ b/chrome/browser/net/net_error_tab_helper.cc @@ -263,7 +263,7 @@ bool NetErrorTabHelper::ProbesAllowed() const { if (testing_state_ != TESTING_DEFAULT) return testing_state_ == TESTING_FORCE_ENABLED; - // TODO(ttuttle): Disable on mobile? + // TODO(juliatuttle): Disable on mobile? return *resolve_errors_with_web_service_; } diff --git a/chrome/renderer/net/OWNERS b/chrome/renderer/net/OWNERS index 0c27a2f5933fcd..fd1666b446ffd4 100644 --- a/chrome/renderer/net/OWNERS +++ b/chrome/renderer/net/OWNERS @@ -1,3 +1,3 @@ jar@chromium.org mmenke@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org diff --git a/components/domain_reliability/OWNERS b/components/domain_reliability/OWNERS index 6abaef79054bf7..5532f10dafd6ac 100644 --- a/components/domain_reliability/OWNERS +++ b/components/domain_reliability/OWNERS @@ -1,6 +1,6 @@ davidben@chromium.org rdsmith@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org per-file quic_error_mapping*=rch@chromium.org per-file quic_error_mapping*=rtenneti@chromium.org diff --git a/components/domain_reliability/context.cc b/components/domain_reliability/context.cc index 4d7c83e2008c1b..2d244e6d23f16c 100644 --- a/components/domain_reliability/context.cc +++ b/components/domain_reliability/context.cc @@ -91,7 +91,7 @@ void DomainReliabilityContext::OnBeacon( "DomainReliability.ReportedBeaconError_HasServerIP", -beacon->chrome_error); } - // TODO(ttuttle): Histogram HTTP response code? + // TODO(juliatuttle): Histogram HTTP response code? // Allow beacons about reports, but don't schedule an upload for more than // one layer of recursion, to avoid infinite report loops. diff --git a/components/domain_reliability/context_manager.cc b/components/domain_reliability/context_manager.cc index b7036d431706f0..c85f82b5a15e58 100644 --- a/components/domain_reliability/context_manager.cc +++ b/components/domain_reliability/context_manager.cc @@ -49,7 +49,7 @@ void DomainReliabilityContextManager::SetConfig( << origin.spec() << "."; return; } - // TODO(ttuttle): Make Context accept Config changes. + // TODO(juliatuttle): Make Context accept Config changes. } DVLOG(1) << "Adding/replacing context for existing origin " << origin.spec() @@ -77,7 +77,7 @@ void DomainReliabilityContextManager::ClearBeaconsInAllContexts() { DomainReliabilityContext* DomainReliabilityContextManager::AddContextForConfig( scoped_ptr config) { std::string key = config->origin.host(); - // TODO(ttuttle): Convert this to actual origin. + // TODO(juliatuttle): Convert this to actual origin. scoped_ptr context = context_factory_->CreateContextForConfig(std::move(config)); @@ -114,7 +114,7 @@ DomainReliabilityContext* DomainReliabilityContextManager::GetContextForHost( if (dot_pos == std::string::npos) return nullptr; - // TODO(ttuttle): Make sure parent is not in PSL before using. + // TODO(juliatuttle): Make sure parent is not in PSL before using. std::string parent_host = host.substr(dot_pos + 1); context_it = contexts_.find(parent_host); diff --git a/components/domain_reliability/context_manager.h b/components/domain_reliability/context_manager.h index 302671e93d6f5b..b3690678c432f5 100644 --- a/components/domain_reliability/context_manager.h +++ b/components/domain_reliability/context_manager.h @@ -41,8 +41,9 @@ class DOMAIN_RELIABILITY_EXPORT DomainReliabilityContextManager { // the contexts themselves intact. void ClearBeaconsInAllContexts(); - // TODO(ttuttle): Once unit tests test ContextManager directly, they can use - // a custom Context::Factory to get the created Context, and this can be void. + // TODO(juliatuttle): Once unit tests test ContextManager directly, they can + // use a custom Context::Factory to get the created Context, and this can be + // void. DomainReliabilityContext* AddContextForConfig( scoped_ptr config); diff --git a/components/domain_reliability/context_unittest.cc b/components/domain_reliability/context_unittest.cc index a54a1765f0dd27..5a47bf0d045df8 100644 --- a/components/domain_reliability/context_unittest.cc +++ b/components/domain_reliability/context_unittest.cc @@ -535,7 +535,7 @@ TEST_F(DomainReliabilityContextTest, SampleNoBeacons) { EXPECT_EQ(0u, beacons.size()); } -// TODO(ttuttle): Add beacon_unittest.cc to test serialization. +// TODO(juliatuttle): Add beacon_unittest.cc to test serialization. } // namespace } // namespace domain_reliability diff --git a/components/domain_reliability/dispatcher.cc b/components/domain_reliability/dispatcher.cc index 5d0ed1ea9c9f99..70ef49df7593ed 100644 --- a/components/domain_reliability/dispatcher.cc +++ b/components/domain_reliability/dispatcher.cc @@ -45,7 +45,7 @@ DomainReliabilityDispatcher::DomainReliabilityDispatcher(MockableTime* time) : time_(time) {} DomainReliabilityDispatcher::~DomainReliabilityDispatcher() { - // TODO(ttuttle): STLElementDeleter? + // TODO(juliatuttle): STLElementDeleter? STLDeleteElements(&tasks_); } diff --git a/components/domain_reliability/monitor.cc b/components/domain_reliability/monitor.cc index 2fdafadcbd1c6f..3a59810911f3f5 100644 --- a/components/domain_reliability/monitor.cc +++ b/components/domain_reliability/monitor.cc @@ -346,7 +346,7 @@ void DomainReliabilityMonitor::OnRequestLegComplete( // This is not foolproof -- it's possible that we'll see the same error twice // (e.g. an SSL error during connection on one attempt, and then an error // that maps to the same code during a read). - // TODO(ttuttle): Find a way for this code to reliably tell whether we + // TODO(juliatuttle): Find a way for this code to reliably tell whether we // eventually established a connection or not. bool url_request_attempt_is_duplicate = false; for (const auto& attempt : request.connection_attempts) { diff --git a/components/domain_reliability/monitor_unittest.cc b/components/domain_reliability/monitor_unittest.cc index ac9c7f2e6e9420..2467f7dbc17a7b 100644 --- a/components/domain_reliability/monitor_unittest.cc +++ b/components/domain_reliability/monitor_unittest.cc @@ -255,7 +255,7 @@ TEST_F(DomainReliabilityMonitorTest, AtLeastOneBakedInConfig) { } // Will fail when baked-in configs expire, as a reminder to update them. -// (Contact ttuttle@chromium.org if this starts failing.) +// (Contact juliatuttle@chromium.org if this starts failing.) TEST_F(DomainReliabilityMonitorTest, AddBakedInConfigs) { // AddBakedInConfigs DCHECKs that the baked-in configs parse correctly, so // this unittest will fail if someone tries to add an invalid config to the diff --git a/components/domain_reliability/quic_error_mapping.cc b/components/domain_reliability/quic_error_mapping.cc index 7331d503ae05cf..3dee27777ffec9 100644 --- a/components/domain_reliability/quic_error_mapping.cc +++ b/components/domain_reliability/quic_error_mapping.cc @@ -240,7 +240,7 @@ bool GetDomainReliabilityBeaconQuicError(net::QuicErrorCode quic_error, std::string* beacon_quic_error_out) { if (quic_error != net::QUIC_NO_ERROR) { // Convert a QUIC error. - // TODO(ttuttle): Consider sorting and using binary search? + // TODO(juliatuttle): Consider sorting and using binary search? for (size_t i = 0; i < arraysize(kQuicErrorMap); i++) { if (kQuicErrorMap[i].quic_error == quic_error) { *beacon_quic_error_out = kQuicErrorMap[i].beacon_quic_error; diff --git a/components/domain_reliability/util.cc b/components/domain_reliability/util.cc index 8dd4e43e9f5e43..4c4648ca999855 100644 --- a/components/domain_reliability/util.cc +++ b/components/domain_reliability/util.cc @@ -90,7 +90,7 @@ bool GetDomainReliabilityBeaconStatus( return true; } - // TODO(ttuttle): Consider sorting and using binary search? + // TODO(juliatuttle): Consider sorting and using binary search? for (size_t i = 0; i < arraysize(net_error_map); i++) { if (net_error_map[i].net_error == net_error) { *beacon_status_out = net_error_map[i].beacon_status; @@ -100,8 +100,8 @@ bool GetDomainReliabilityBeaconStatus( return false; } -// TODO(ttuttle): Consider using NPN/ALPN instead, if there's a good way to -// differentiate HTTP and HTTPS. +// TODO(juliatuttle): Consider using NPN/ALPN instead, if there's a good way to +// differentiate HTTP and HTTPS. std::string GetDomainReliabilityProtocol( net::HttpResponseInfo::ConnectionInfo connection_info, bool ssl_info_populated) { diff --git a/components/domain_reliability/util.h b/components/domain_reliability/util.h index 3cbf469b4f77f2..50447f11631e06 100644 --- a/components/domain_reliability/util.h +++ b/components/domain_reliability/util.h @@ -57,7 +57,7 @@ GURL SanitizeURLForReport(const GURL& beacon_url, // Mockable wrapper around TimeTicks::Now and Timer. Mock version is in // test_util.h. -// TODO(ttuttle): Rename to Time{Provider,Source,?}. +// TODO(juliatuttle): Rename to Time{Provider,Source,?}. class DOMAIN_RELIABILITY_EXPORT MockableTime : public base::Clock, public base::TickClock { public: diff --git a/components/error_page/OWNERS b/components/error_page/OWNERS index a479fb967ade08..44a878b5195a2e 100644 --- a/components/error_page/OWNERS +++ b/components/error_page/OWNERS @@ -1,2 +1,2 @@ mmenke@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org diff --git a/components/neterror/OWNERS b/components/neterror/OWNERS index 0c27a2f5933fcd..fd1666b446ffd4 100644 --- a/components/neterror/OWNERS +++ b/components/neterror/OWNERS @@ -1,3 +1,3 @@ jar@chromium.org mmenke@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org diff --git a/components/network_hints/OWNERS b/components/network_hints/OWNERS index 1535646b463412..762248841265f0 100644 --- a/components/network_hints/OWNERS +++ b/components/network_hints/OWNERS @@ -1,2 +1,2 @@ jar@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org diff --git a/components/page_load_metrics/OWNERS b/components/page_load_metrics/OWNERS index 558b99273bd67c..d275084d95ae13 100644 --- a/components/page_load_metrics/OWNERS +++ b/components/page_load_metrics/OWNERS @@ -1,4 +1,4 @@ csharrison@chromium.org kinuko@chromium.org rdsmith@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org diff --git a/components/resources/OWNERS b/components/resources/OWNERS index 76b652d670a5f3..20c5b2db4b3381 100644 --- a/components/resources/OWNERS +++ b/components/resources/OWNERS @@ -19,7 +19,7 @@ per-file gcm_driver_resources.grdp=jianli@chromium.org per-file gcm_driver_resources.grdp=peter@chromium.org per-file gcm_driver_resources.grdp=zea@chromium.org per-file neterror*=mmenke@chromium.org -per-file neterror*=ttuttle@chromium.org +per-file neterror*=juliatuttle@chromium.org per-file proximity_auth*=isherman@chromium.org per-file proximity_auth*=tengs@chromium.org per-file supervised_user_error_page.grpd=aberent@chromium.org diff --git a/net/OWNERS b/net/OWNERS index 808c8631344858..8282dadc18df75 100644 --- a/net/OWNERS +++ b/net/OWNERS @@ -14,7 +14,7 @@ rch@chromium.org rdsmith@chromium.org rsleevi@chromium.org rtenneti@chromium.org -ttuttle@chromium.org +juliatuttle@chromium.org xunjieli@chromium.org per-file *.isolate=maruel@chromium.org diff --git a/net/disk_cache/simple/simple_entry_impl.cc b/net/disk_cache/simple/simple_entry_impl.cc index 3d9bd0ff74958e..d1af70f442401b 100644 --- a/net/disk_cache/simple/simple_entry_impl.cc +++ b/net/disk_cache/simple/simple_entry_impl.cc @@ -81,8 +81,8 @@ void RecordWriteResult(net::CacheType cache_type, WriteResult result) { "WriteResult2", cache_type, result, WRITE_RESULT_MAX); } -// TODO(ttuttle): Consider removing this once we have a good handle on header -// size changes. +// TODO(juliatuttle): Consider removing this once we have a good handle on +// header size changes. void RecordHeaderSizeChange(net::CacheType cache_type, int old_size, int new_size) { HeaderSizeChange size_change; @@ -521,7 +521,7 @@ int SimpleEntryImpl::GetAvailableRange(int64_t offset, bool SimpleEntryImpl::CouldBeSparse() const { DCHECK(io_thread_checker_.CalledOnValidThread()); - // TODO(ttuttle): Actually check. + // TODO(juliatuttle): Actually check. return true; } diff --git a/net/disk_cache/simple/simple_synchronous_entry.cc b/net/disk_cache/simple/simple_synchronous_entry.cc index d68e426d37cf0a..864c05ac8ac726 100644 --- a/net/disk_cache/simple/simple_synchronous_entry.cc +++ b/net/disk_cache/simple/simple_synchronous_entry.cc @@ -785,8 +785,9 @@ bool SimpleSynchronousEntry::OpenFiles( for (int i = 0; i < kSimpleEntryFileCount; ++i) { File::Error error; if (!MaybeOpenFile(i, &error)) { - // TODO(ttuttle,gavinp): Remove one each of these triplets of histograms. - // We can calculate the third as the sum or difference of the other two. + // TODO(juliatuttle,gavinp): Remove one each of these triplets of + // histograms. We can calculate the third as the sum or difference of the + // other two. RecordSyncOpenResult( cache_type_, OPEN_ENTRY_PLATFORM_FILE_ERROR, had_index); SIMPLE_CACHE_UMA(ENUMERATION, @@ -865,8 +866,9 @@ bool SimpleSynchronousEntry::CreateFiles( for (int i = 0; i < kSimpleEntryFileCount; ++i) { File::Error error; if (!MaybeCreateFile(i, FILE_NOT_REQUIRED, &error)) { - // TODO(ttuttle,gavinp): Remove one each of these triplets of histograms. - // We can calculate the third as the sum or difference of the other two. + // TODO(juliatuttle,gavinp): Remove one each of these triplets of + // histograms. We can calculate the third as the sum or difference of the + // other two. RecordSyncCreateResult(CREATE_ENTRY_PLATFORM_FILE_ERROR, had_index); SIMPLE_CACHE_UMA(ENUMERATION, "SyncCreatePlatformFileError", cache_type_, @@ -1381,7 +1383,7 @@ bool SimpleSynchronousEntry::ReadSparseRange(const SparseRange* range, return false; } } - // TODO(ttuttle): Incremental crc32 calculation? + // TODO(juliatuttle): Incremental crc32 calculation? return true; } diff --git a/net/dns/dns_config_service_posix.cc b/net/dns/dns_config_service_posix.cc index efb2712a712579..cb941cb75e6335 100644 --- a/net/dns/dns_config_service_posix.cc +++ b/net/dns/dns_config_service_posix.cc @@ -161,8 +161,8 @@ ConfigParsePosixResult ReadDnsConfig(DnsConfig* config) { // DNS code (and its clients) are already robust against failing to get the DNS // config for whatever reason, so the properties can disappear and the world // won't end. -// TODO(ttuttle): Depend on libcutils, then switch this (and other uses of -// __system_property_get) to property_get. +// TODO(juliatuttle): Depend on libcutils, then switch this (and other uses of +// __system_property_get) to property_get. ConfigParsePosixResult ReadDnsConfig(DnsConfig* dns_config) { std::string dns1_string, dns2_string; char property_value[PROP_VALUE_MAX]; diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc index e47a20ad1d44c2..23295ad154c6ba 100644 --- a/net/http/http_cache_transaction.cc +++ b/net/http/http_cache_transaction.cc @@ -413,7 +413,7 @@ bool HttpCache::Transaction::GetFullRequestHeaders( if (network_trans_) return network_trans_->GetFullRequestHeaders(headers); - // TODO(ttuttle): Read headers from cache. + // TODO(juliatuttle): Read headers from cache. return false; } diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc index 5a70587ceb2caf..9917c69f04b81d 100644 --- a/net/http/http_network_transaction.cc +++ b/net/http/http_network_transaction.cc @@ -359,7 +359,7 @@ void HttpNetworkTransaction::StopCaching() {} bool HttpNetworkTransaction::GetFullRequestHeaders( HttpRequestHeaders* headers) const { - // TODO(ttuttle): Make sure we've populated request_headers_. + // TODO(juliatuttle): Make sure we've populated request_headers_. *headers = request_headers_; return true; } diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc index 31250f3aa2c0c1..7aa07dba281118 100644 --- a/net/http/http_network_transaction_unittest.cc +++ b/net/http/http_network_transaction_unittest.cc @@ -4664,7 +4664,7 @@ TEST_P(HttpNetworkTransactionTest, HttpsProxySpdyConnectFailure) { rv = callback1.WaitForResult(); EXPECT_EQ(ERR_TUNNEL_CONNECTION_FAILED, rv); - // TODO(ttuttle): Anything else to check here? + // TODO(juliatuttle): Anything else to check here? } // Test load timing in the case of two HTTPS (non-SPDY) requests through a SPDY @@ -7493,7 +7493,7 @@ TEST_P(HttpNetworkTransactionTest, rv = callback.WaitForResult(); EXPECT_EQ(ERR_TUNNEL_CONNECTION_FAILED, rv); - // TODO(ttuttle): Anything else to check here? + // TODO(juliatuttle): Anything else to check here? } // Test that a SPDY proxy's response to a CONNECT request is filtered. @@ -7549,7 +7549,7 @@ TEST_P(HttpNetworkTransactionTest, rv = callback.WaitForResult(); EXPECT_EQ(ERR_TUNNEL_CONNECTION_FAILED, rv); - // TODO(ttuttle): Anything else to check here? + // TODO(juliatuttle): Anything else to check here? } // Test the request-challenge-retry sequence for basic auth, through diff --git a/net/tools/net_docs/net_docs.py b/net/tools/net_docs/net_docs.py index a433a201e5ae60..2dd30de87feaed 100755 --- a/net/tools/net_docs/net_docs.py +++ b/net/tools/net_docs/net_docs.py @@ -54,7 +54,7 @@ def WriteFile(filename, contents): def FormatPage(markdown_html, title): - # TODO(ttuttle): Add a navigation list / table of contents of available + # TODO(juliatuttle): Add a navigation list / table of contents of available # Markdown files, perhaps? return TEMPLATE.format(title=title, body=markdown_html) diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index ee4eca52218766..42eff172d7cf23 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -1550,21 +1550,21 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of DnsAttempts before DnsTransaction completes with failure. - ttuttle@chromium.org + juliatuttle@chromium.org Count of DnsAttempts before DnsTransaction completes successfully. - ttuttle@chromium.org + juliatuttle@chromium.org Whether DnsConfigService::OnConfigChange actually corresponded to a change in DnsConfig. @@ -1572,45 +1572,45 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time between calls to DnsConfigService::InvalidateConfig. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time spent parsing DnsConfig. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of results of parsing DnsConfig in DnsConfigServicePosix. - ttuttle@chromium.org + juliatuttle@chromium.org Whether DnsConfig was parsed successfully. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of results of parsing DnsConfig in DnsConfigServiceWin. - ttuttle@chromium.org + juliatuttle@chromium.org Whether the first valid DnsConfig included a rogue nameserver. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of specific error codes returned by DnsTask if a subsequent ProcTask succeeded, at the end of a streak of failures after which the DnsClient was @@ -1619,7 +1619,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org TRUE counts the events when a valid DnsConfig is received and used to enable DnsClient, while FALSE counts the events when DnsClient is disabled after a @@ -1628,21 +1628,21 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time spent by ProcTask in failing fallback resolutions. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time spent by ProcTask in successful fallback resolutions. - ttuttle@chromium.org + juliatuttle@chromium.org Whether there was a valid DNS configuration at the start of a job which eventually completed successfully. @@ -1650,12 +1650,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Whether DnsHosts were parsed successfully. - ttuttle@chromium.org + juliatuttle@chromium.org Whether DnsConfigService::OnHostsChange actually corresponded to a change in DnsHosts. @@ -1663,33 +1663,33 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time between calls to DnsConfigService::InvalidateHosts. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time spent parsing DnsHosts. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of results of parsing DnsHosts in DnsConfigServiceWin. - ttuttle@chromium.org + juliatuttle@chromium.org The size of the HOSTS file observed before each attempt to parse it. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (using DnsClient). @@ -1697,7 +1697,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (using DnsClient). Includes only Jobs which had @@ -1706,7 +1706,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (using DnsClient). Includes only Jobs which had @@ -1715,7 +1715,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (using DnsClient). Includes only Jobs which had @@ -1724,7 +1724,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (using DnsClient). Includes only Jobs which had @@ -1733,7 +1733,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (using DnsClient). Includes only Jobs which had @@ -1742,7 +1742,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -1751,7 +1751,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -1761,7 +1761,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -1771,7 +1771,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -1781,7 +1781,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -1791,7 +1791,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -1804,7 +1804,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. Deprecated as of 4/2016. - ttuttle@chromium.org + juliatuttle@chromium.org Type of nameservers in the DNS config, recorded each time the config is read by the DNSConfigService. @@ -1812,7 +1812,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of results of parsing addresses out of DNS responses in successful DnsTransactions. @@ -1820,7 +1820,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The source of the async DNS preference's default. Logged at startup, when the IO thread is created. @@ -1828,7 +1828,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The source of the async DNS preference's value. Logged at startup, when the IO thread is created. @@ -1836,7 +1836,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of specific error codes returned by DnsTask if a subsequent ProcTask succeeded. @@ -1844,7 +1844,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken by DnsTask in resolutions that failed. Excludes time spent in the subsequent fallback. @@ -1852,7 +1852,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of the overall results of using asynchronous DNS in HostResolverImpl. This only includes jobs started with valid DNS configuration and excludes @@ -1861,35 +1861,35 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken by DnsTask in resolutions that succeeded. - ttuttle@chromium.org + juliatuttle@chromium.org Same as AsyncDNS.ResolveSuccess, but limited to pure IPv4 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Same as AsyncDNS.ResolveSuccess, but limited to pure IPv6 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Same as AsyncDNS.ResolveSuccess, but limited to IPv4/IPv6 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Count of servers in DnsConfig. Recorded on every new DnsSession, which is created on DNS change. @@ -1897,14 +1897,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Index in DnsConfig of the failing server, recorded at the time of failure. - ttuttle@chromium.org + juliatuttle@chromium.org Count of server failures after network change before first success in the DnsSession. Recorded at the time of first success. @@ -1912,7 +1912,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of server failures after success until the end of the session. Server has reported success at some point during the session. Recorded at the end @@ -1921,7 +1921,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of server failures before success. This is NOT the first success in the DnsSession. Recorded at the time of success. @@ -1929,7 +1929,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of server failures without success until the end of the session. Server has never reported success during the DnsSession. Recorded at the end @@ -1938,14 +1938,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The current server is "good" and does not have to be skipped. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in failing calls to AddressSorter in dual-stack resolutions using DnsTask. @@ -1953,7 +1953,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in successful calls to AddressSorter in dual-stack resolutions using DnsTask. @@ -1961,7 +1961,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The number of names from the search name list consumed during a successful transaction (QTYPE A only). @@ -1969,7 +1969,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The number of names left on the search name list at the end of a successful transaction (QTYPE A only). @@ -1977,7 +1977,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The number of names on the search name list at the start of a transaction (QTYPE A only). @@ -1985,7 +1985,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken by DnsTCPAttempt in failed attempts. Excludes timeouts. @@ -1993,42 +1993,42 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken by DnsTCPAttempt in successful attempts. - ttuttle@chromium.org + juliatuttle@chromium.org Difference between RTT and timeout calculated using Histogram algorithm. - ttuttle@chromium.org + juliatuttle@chromium.org Difference between timeout calculated using Histogram algorithm and RTT. - ttuttle@chromium.org + juliatuttle@chromium.org Difference between RTT and timeout calculated using Jacobson algorithm. - ttuttle@chromium.org + juliatuttle@chromium.org Difference between timeout calculated using Jacobson algorithm and RTT. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time that would be spent waiting for lost request using Histogram algorithm. @@ -2036,7 +2036,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time that would be spent waiting for lost request using Jacobson algorithm. @@ -2044,7 +2044,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time since a HostResolverImpl::Resolve request to the time a result is posted. Excludes canceled, evicted, and aborted requests. Includes @@ -2053,7 +2053,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time since a HostResolverImpl::Resolve request to the time a result is posted. Excludes canceled, evicted, and aborted requests. Includes @@ -2062,7 +2062,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in failing DnsTransactions. This includes server failures, timeouts and NXDOMAIN results. @@ -2070,7 +2070,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in successful DnsTransactions. This includes all NOERROR answers, even if they indicate the name has no addresses or they @@ -2079,21 +2079,21 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Same as AsyncDNS.TransactionSuccess but limited to A query type. - ttuttle@chromium.org + juliatuttle@chromium.org Same as AsyncDNS.TransactionSuccess but limited to AAAA query type. - ttuttle@chromium.org + juliatuttle@chromium.org TTL of the resolved addresses, as in the response received from the server. For results served from local cache, the TTL is from the original response. @@ -2101,7 +2101,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken by DnsUDPAttempt in failed attempts. Excludes timeouts. @@ -2109,7 +2109,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken by DnsUDPAttempt in successful attempts. Includes responses arriving after timeout, if multiple attempts are allowed. @@ -2117,7 +2117,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time since the last empty config result to the time a non-change OnConfigChange is received. @@ -2125,7 +2125,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time since the last empty config result to the time a non-change OnHostsChange is received. @@ -2133,7 +2133,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The result of DnsConfigService watch. Counts STARTED on every initialization and FAILED_* on any failure. @@ -8505,14 +8505,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The attempt which completed after the job was already cancelled. - ttuttle@chromium.org + juliatuttle@chromium.org The attempt which completed after the job was already cancelled OR the attempt that has finished after host resolution was already completed by an @@ -8521,7 +8521,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in OS resolutions for actual navigations. These attempts which completed after the job was already canceled OR after the job @@ -8531,12 +8531,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The attempt that has not resolved the host successfully. - ttuttle@chromium.org + juliatuttle@chromium.org The attempt that resolved the host first and the resolution was not successful. @@ -8544,19 +8544,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The attempt that resolved the host first and the resolution was successful. - ttuttle@chromium.org + juliatuttle@chromium.org The attempt that has resolved the host successfully. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in OS resolutions that succeeded and were requested for actual navigations. These attempts which completed after the job was @@ -8567,7 +8567,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org This histogram shows the time saved by having spawned an extra attempt, when the first attempt didn't finish before retry attempt. @@ -8575,7 +8575,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The time left to expiration of an entry when it is removed while compacting the HostCache. @@ -8583,7 +8583,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The time since expiration of an entry when it is removed while compacting the HostCache. @@ -8591,7 +8591,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The time since expiration of an entry when it is removed on lookup. @@ -8599,14 +8599,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Error status when an empty address list was found in OnLookupComplete(). - ttuttle@chromium.org + juliatuttle@chromium.org When either a pre-resolution was not done recently enough to provide benefit, or the corresponding pre-resolution is still pending, this @@ -8619,7 +8619,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org When either a pre-resolution was not done recently enough to provide benefit, or the corresponding pre-resolution is still pending, this @@ -8632,7 +8632,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (a getaddrinfo call was dispatched to the thread @@ -8641,7 +8641,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (a getaddrinfo call was dispatched to the thread @@ -8650,7 +8650,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (a getaddrinfo call was dispatched to the thread @@ -8659,7 +8659,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (a getaddrinfo call was dispatched to the thread @@ -8668,7 +8668,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (a getaddrinfo call was dispatched to the thread @@ -8677,7 +8677,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the time the HostResolverImpl::Job was created and the time the Job was started (a getaddrinfo call was dispatched to the thread @@ -8686,7 +8686,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -8695,7 +8695,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -8705,7 +8705,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -8715,7 +8715,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -8725,7 +8725,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -8735,7 +8735,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time elapsed between the last time the priority of a HostResolverImpl::Job changed (when a Request was attached or detached) and the time the Job was @@ -8745,7 +8745,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time used (most recently) to pre-resolve a hostname, when the prefetched resolution was apparently evicted from the cache. The @@ -8755,7 +8755,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time used (most recently) to pre-resolve a hostname, when the prefetched resolution was apparently evicted from the cache. The @@ -8765,12 +8765,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Replaced by DNS.PrefetchFoundNameL. - ttuttle@chromium.org + juliatuttle@chromium.org Deprecated 2/2010, and replaced by DNS.PrefetchResolution @@ -8787,12 +8787,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Replaced by DNS.PrefetchNegativeHitL. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time saved due to DNS pre-resolving in the "name not found" case. Time "savings" shown in the histogram are @@ -8810,12 +8810,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Replaced by DNS.PrefetchPositiveHitL. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time saved due to DNS pre-resolving in the "name was found" case, and induced by either a page scan for a link or an omnibox @@ -8831,7 +8831,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time spent by a proposed resolution waiting in the queue to be resolved. This number is in addition to any DNS resolution time that may @@ -8840,7 +8840,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time saved due to DNS pre-resolving in the "name was found" case, and induced by predicting (using referrer lists) that a @@ -8856,7 +8856,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The duration of time used by the DNS pre-resolving threads to resolve a host name via the network. Any resolutions that are faster than 15ms are @@ -8870,7 +8870,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org When, due to congestion avoidance, a queued pre-resolution is abandoned (recycled) without actually being resolved, this histograms records the age @@ -8880,7 +8880,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org When, due to congestion avoidance, a queued pre-resolution is abandoned (recycled) without actually being resolved, this histograms records the age @@ -8890,14 +8890,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Counts of successes and failures of OS resolutions in various categories. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in OS resolutions for actual navigations. Note that cached OS resolutions may provide low (0ms?) resolution times. @@ -8905,22 +8905,22 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Same as DNS.ResolveFail, but limited to pure IPv4 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Same as DNS.ResolveFail, but limited to pure IPv6 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Same as DNS.ResolveFail, but limited to IPv4/IPv6 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in speculative OS resolutions. Note that cached OS resolutions may provide low (0ms?) resolution times. @@ -8928,7 +8928,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in speculative OS resolution that succeeded. Note that cached resolutions may provide low (0ms?) resolution times. @@ -8936,7 +8936,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time taken in OS resolutions that succeeded and were requested for actual navigations. Note that cached resolutions may provide low (0ms?) @@ -8945,28 +8945,28 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Same as DNS.ResolveSuccess, but limited to pure IPv4 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Same as DNS.ResolveSuccess, but limited to pure IPv6 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Same as DNS.ResolveSuccess, but limited to IPv4/IPv6 lookups. - ttuttle@chromium.org + juliatuttle@chromium.org Deprecated as of 5/2013. @@ -8978,7 +8978,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time since a HostResolverImpl::Resolve request to the time a result is posted. Excludes canceled, evicted, and aborted requests. Includes @@ -8987,7 +8987,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Duration of time since a HostResolverImpl::Resolve request to the time a result is posted. Excludes canceled, evicted, and aborted requests. Includes @@ -8996,7 +8996,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org In some cases, such as when content arrives with embedded references to other servers, the prefetch system can't (or doesn't) attempt to pre-resolve @@ -9014,7 +9014,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org In some cases, such as when content arrives with embedded references to other servers, or when a page (such as one in SSL) preclude scanning and @@ -9033,12 +9033,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Status of DNS probe updates sent to a DNS error page. - ttuttle@chromium.org + juliatuttle@chromium.org Renamed 7/2013 to DnsProbe.ProbeDuration. @@ -9046,7 +9046,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9057,7 +9057,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9067,7 +9067,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9078,7 +9078,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9088,7 +9088,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Renamed 7/2013 to DnsProbe.ProbeResult. (Also switched to the full DnsProbe.ProbeStatus enum.) @@ -9097,7 +9097,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9106,7 +9106,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9118,7 +9118,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9129,7 +9129,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9140,7 +9140,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9148,7 +9148,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9156,7 +9156,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Removed 7/2013. @@ -9164,12 +9164,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Time between starting and finishing DNS probe. - ttuttle@chromium.org + juliatuttle@chromium.org Result of DNS probes sent by the probe service. @@ -9279,7 +9279,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Whether a beacon added to a Domain Reliability context was saved to be uploaded to the collector. @@ -9287,7 +9287,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Whether adding a beacon to a Domain Reliability context caused it to evict an older beacon to stay within memory limits. @@ -9295,7 +9295,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The Chrome error code included in a beacon saved to be uploaded to the collector. @@ -9304,7 +9304,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The Chrome error code included in a beacon with a non-empty server_ip field saved to be uploaded to the collector. @@ -9312,7 +9312,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The index of the collector that a Domain Reliability upload was sent to. (Later collectors are only used when earlier collectors have failed.) @@ -9320,7 +9320,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org After an upload to a collector finishes (successfully or not), the delay before the scheduler can send another upload to that collector. (If recent @@ -9330,7 +9330,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The elapsed time between starting and finishing a Domain Reliability upload. @@ -9338,7 +9338,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Deprecated 11/2014; see UploadCollectorIndex @@ -9350,7 +9350,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The time between successive Domain Reliability uploads being started in the same context. (Can be arbitrarily long if no beacons are reported in a @@ -9359,7 +9359,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The time from the first beacon in a Domain Reliability upload being recorded and that upload completing successfully. (Note that if some beacons are @@ -9369,7 +9369,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The network error code (or OK if none) returned by the URLFetcher when a Domain Reliability report is uploaded. @@ -9377,7 +9377,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org The HTTP response code returned by the Domain Reliability collector when a report is uploaded. @@ -9385,7 +9385,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Whether a Domain Reliability upload succeeded. @@ -26176,28 +26176,28 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Whether adding an entry to the HTTP auth cache evicted another entry. - ttuttle@chromium.org + juliatuttle@chromium.org When an HTTP auth cache entry is evicted, the time since it was created. - ttuttle@chromium.org + juliatuttle@chromium.org When an HTTP auth cache entry is evicted, the time since it was last used. - ttuttle@chromium.org + juliatuttle@chromium.org Whether adding a path to an entry in the HTTP auth cache evicted another path. @@ -26205,7 +26205,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org When looking up an HTTP auth cache entry by path, the position (1-indexed) of the entry on a hit, or 0 on a miss. @@ -26213,7 +26213,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org When looking up an HTTP auth cache entry by realm, the position (1-indexed) of the entry on a hit, or 0 on a miss. @@ -28481,7 +28481,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of (post-SSL/proxy, pre-filter) kilobytes received per request made by the browser process. @@ -28489,7 +28489,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of (post-SSL/proxy, pre-filter) kilobytes received per request made by a renderer process. @@ -28497,7 +28497,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. - ttuttle@chromium.org + juliatuttle@chromium.org Count of (post-SSL/proxy, pre-filter) kilobytes received per request made by a process not covered by one of the other ResponseSizeByProcess histograms.