| Index: net/dns/dns_config_service_win.h
|
| diff --git a/net/dns/dns_config_service_win.h b/net/dns/dns_config_service_win.h
|
| index d26aed5459560faad0cc8d7e6d23ce9fc8fb29be..c680e520ab035075f247205c6753b138f0f12530 100644
|
| --- a/net/dns/dns_config_service_win.h
|
| +++ b/net/dns/dns_config_service_win.h
|
| @@ -38,8 +38,8 @@ namespace internal {
|
| // a registry key and stores it in |out|. Returns true on success. Empty
|
| // entries (e.g., "chromium.org,,org") terminate the list. Non-ascii hostnames
|
| // are converted to punycode.
|
| -bool NET_EXPORT_PRIVATE ParseSearchList(const base::string16& value,
|
| - std::vector<std::string>* out);
|
| +bool NET_EXPORT_PRIVATE
|
| + ParseSearchList(const base::string16& value, std::vector<std::string>* out);
|
|
|
| // All relevant settings read from registry and IP Helper. This isolates our
|
| // logic from system calls and is exposed for unit tests. Keep it an aggregate
|
| @@ -109,9 +109,9 @@ enum ConfigParseWinResult {
|
| };
|
|
|
| // Fills in |dns_config| from |settings|. Exposed for tests.
|
| -ConfigParseWinResult NET_EXPORT_PRIVATE ConvertSettingsToDnsConfig(
|
| - const DnsSystemSettings& settings,
|
| - DnsConfig* dns_config);
|
| +ConfigParseWinResult NET_EXPORT_PRIVATE
|
| + ConvertSettingsToDnsConfig(const DnsSystemSettings& settings,
|
| + DnsConfig* dns_config);
|
|
|
| // Use DnsConfigService::CreateSystemService to use it outside of tests.
|
| class NET_EXPORT_PRIVATE DnsConfigServiceWin : public DnsConfigService {
|
| @@ -143,4 +143,3 @@ class NET_EXPORT_PRIVATE DnsConfigServiceWin : public DnsConfigService {
|
| } // namespace net
|
|
|
| #endif // NET_DNS_DNS_CONFIG_SERVICE_WIN_H_
|
| -
|
|
|