| Index: chrome/browser/intranet_redirect_detector.cc
|
| ===================================================================
|
| --- chrome/browser/intranet_redirect_detector.cc (revision 43832)
|
| +++ chrome/browser/intranet_redirect_detector.cc (working copy)
|
| @@ -158,7 +158,6 @@
|
|
|
| int IntranetRedirectHostResolverProc::Resolve(const std::string& host,
|
| net::AddressFamily address_family,
|
| - net::HostResolverFlags flags,
|
| net::AddressList* addrlist) {
|
| // We'd love to just ask the IntranetRedirectDetector, but we may not be on
|
| // the same thread. So just use the heuristic that any all-lowercase a-z
|
| @@ -168,5 +167,5 @@
|
| (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") ==
|
| std::string::npos)) ?
|
| net::ERR_NAME_NOT_RESOLVED :
|
| - ResolveUsingPrevious(host, address_family, flags, addrlist);
|
| + ResolveUsingPrevious(host, address_family, addrlist);
|
| }
|
|
|