OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_DNS_DNS_HOSTS_H_ | 5 #ifndef NET_DNS_DNS_HOSTS_H_ |
6 #define NET_DNS_DNS_HOSTS_H_ | 6 #define NET_DNS_DNS_HOSTS_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 // As above but reads the file pointed to by |path|. | 69 // As above but reads the file pointed to by |path|. |
70 bool NET_EXPORT_PRIVATE ParseHostsFile(const base::FilePath& path, | 70 bool NET_EXPORT_PRIVATE ParseHostsFile(const base::FilePath& path, |
71 DnsHosts* dns_hosts); | 71 DnsHosts* dns_hosts); |
72 | 72 |
73 | 73 |
74 | 74 |
75 } // namespace net | 75 } // namespace net |
76 | 76 |
77 #endif // NET_DNS_DNS_HOSTS_H_ | 77 #endif // NET_DNS_DNS_HOSTS_H_ |
78 | |
OLD | NEW |