| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/intranet_redirect_detector.h" | 5 #include "chrome/browser/intranet_redirect_detector.h" |
| 6 | 6 |
| 7 #include "base/rand_util.h" | 7 #include "base/rand_util.h" |
| 8 #include "base/stl_util-inl.h" | 8 #include "base/stl_util-inl.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
| 12 #include "chrome/browser/profile.h" | 12 #include "chrome/browser/profile.h" |
| 13 #include "chrome/common/notification_service.h" | 13 #include "chrome/common/notification_service.h" |
| 14 #include "chrome/common/pref_names.h" | 14 #include "chrome/common/pref_names.h" |
| 15 #include "net/base/load_flags.h" | 15 #include "net/base/load_flags.h" |
| 16 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
| 17 #include "net/base/registry_controlled_domain.h" | 17 #include "net/base/registry_controlled_domain.h" |
| 18 #include "net/url_request/url_request_status.h" | 18 #include "net/url_request/url_request_status.h" |
| 19 | 19 |
| 20 const size_t IntranetRedirectDetector::kNumCharsInHostnames = 10; | 20 const size_t IntranetRedirectDetector::kNumCharsInHostnames = 10; |
| 21 | 21 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 // the same thread. So just use the heuristic that any all-lowercase a-z | 188 // the same thread. So just use the heuristic that any all-lowercase a-z |
| 189 // hostname with the right number of characters is likely from the detector | 189 // hostname with the right number of characters is likely from the detector |
| 190 // (and thus should be blocked). | 190 // (and thus should be blocked). |
| 191 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) && | 191 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) && |
| 192 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == | 192 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == |
| 193 std::string::npos)) ? | 193 std::string::npos)) ? |
| 194 net::ERR_NAME_NOT_RESOLVED : | 194 net::ERR_NAME_NOT_RESOLVED : |
| 195 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist, | 195 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist, |
| 196 os_error); | 196 os_error); |
| 197 } | 197 } |
| OLD | NEW |