| OLD | NEW |
| 1 // Copyright (c) 2011 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_BASE_HOST_RESOLVER_PROC_H_ | 5 #ifndef NET_BASE_HOST_RESOLVER_PROC_H_ |
| 6 #define NET_BASE_HOST_RESOLVER_PROC_H_ | 6 #define NET_BASE_HOST_RESOLVER_PROC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 NET_EXPORT_PRIVATE int SystemHostResolverProc( | 88 NET_EXPORT_PRIVATE int SystemHostResolverProc( |
| 89 const std::string& host, | 89 const std::string& host, |
| 90 AddressFamily address_family, | 90 AddressFamily address_family, |
| 91 HostResolverFlags host_resolver_flags, | 91 HostResolverFlags host_resolver_flags, |
| 92 AddressList* addrlist, | 92 AddressList* addrlist, |
| 93 int* os_error); | 93 int* os_error); |
| 94 | 94 |
| 95 } // namespace net | 95 } // namespace net |
| 96 | 96 |
| 97 #endif // NET_BASE_HOST_RESOLVER_PROC_H_ | 97 #endif // NET_BASE_HOST_RESOLVER_PROC_H_ |
| OLD | NEW |