| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/dns_prefetch/common/prefetch_common.h" | 5 #include "components/network_hints/common/network_hints_common.h" |
| 6 | 6 |
| 7 namespace dns_prefetch { | 7 namespace network_hints { |
| 8 | 8 |
| 9 const size_t kMaxDnsHostnamesPerRequest = 30; | 9 const size_t kMaxDnsHostnamesPerRequest = 30; |
| 10 const size_t kMaxDnsHostnameLength = 255; | 10 const size_t kMaxDnsHostnameLength = 255; |
| 11 | 11 |
| 12 LookupRequest::LookupRequest() { | 12 LookupRequest::LookupRequest() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 LookupRequest::~LookupRequest() { | 15 LookupRequest::~LookupRequest() { |
| 16 } | 16 } |
| 17 | 17 |
| 18 } // namespace dns_prefetch | 18 } // namespace network_hints |
| OLD | NEW |