| 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_CONFIG_SERVICE_WIN_H_ | 5 #ifndef NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ |
| 6 #define NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ | 6 #define NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ |
| 7 | 7 |
| 8 // The sole purpose of dns_config_service_win.h is for unittests so we just | 8 // The sole purpose of dns_config_service_win.h is for unittests so we just |
| 9 // include these headers here. | 9 // include these headers here. |
| 10 #include <winsock2.h> | 10 #include <winsock2.h> |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 scoped_refptr<HostsReader> hosts_reader_; | 141 scoped_refptr<HostsReader> hosts_reader_; |
| 142 | 142 |
| 143 DISALLOW_COPY_AND_ASSIGN(DnsConfigServiceWin); | 143 DISALLOW_COPY_AND_ASSIGN(DnsConfigServiceWin); |
| 144 }; | 144 }; |
| 145 | 145 |
| 146 } // namespace internal | 146 } // namespace internal |
| 147 | 147 |
| 148 } // namespace net | 148 } // namespace net |
| 149 | 149 |
| 150 #endif // NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ | 150 #endif // NET_DNS_DNS_CONFIG_SERVICE_WIN_H_ |
| 151 | |
| OLD | NEW |