diff options
Diffstat (limited to 'chrome/renderer/net/render_dns_queue.cc')
-rw-r--r-- | chrome/renderer/net/render_dns_queue.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/net/render_dns_queue.cc b/chrome/renderer/net/render_dns_queue.cc index 94c0ea0..5a0b15e0 100644 --- a/chrome/renderer/net/render_dns_queue.cc +++ b/chrome/renderer/net/render_dns_queue.cc @@ -38,7 +38,7 @@ DnsQueue::PushResult DnsQueue::Push(const char* source, if (0 < size_ && readable_ + length < buffer_sentinel_ && 0 == strncmp(source, &buffer_[readable_], unsigned_length) && '\0' == buffer_[readable_ + unsigned_length]) { - SIMPLE_STATS_COUNTER("DNS.PrefetchDnsRedundantPush"); + SIMPLE_STATS_COUNTER(L"DNS.PrefetchDnsRedundantPush"); // We already wrote this name to the queue, so we'll skip this repeat. return REDUNDANT_PUSH; @@ -56,7 +56,7 @@ DnsQueue::PushResult DnsQueue::Push(const char* source, } if (length + 1 >= available_space) { - SIMPLE_STATS_COUNTER("DNS.PrefetchDnsQueueFull"); + SIMPLE_STATS_COUNTER(L"DNS.PrefetchDnsQueueFull"); return OVERFLOW_PUSH; // Not enough space to push. } |