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 #include "chrome/browser/intranet_redirect_detector.h" | 5 #include "chrome/browser/intranet_redirect_detector.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/prefs/pref_registry_simple.h" | 9 #include "base/prefs/pref_registry_simple.h" |
10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
11 #include "base/rand_util.h" | 11 #include "base/rand_util.h" |
12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "chrome/browser/browser_process.h" | 14 #include "chrome/browser/browser_process.h" |
15 #include "chrome/common/chrome_switches.h" | 15 #include "chrome/common/chrome_switches.h" |
16 #include "chrome/common/pref_names.h" | 16 #include "chrome/common/pref_names.h" |
17 #include "net/base/load_flags.h" | 17 #include "net/base/load_flags.h" |
18 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
19 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 19 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
20 #include "net/url_request/url_fetcher.h" | 20 #include "net/url_request/url_fetcher.h" |
21 #include "net/url_request/url_request_context_getter.h" | 21 #include "net/url_request/url_request_context_getter.h" |
22 #include "net/url_request/url_request_status.h" | 22 #include "net/url_request/url_request_status.h" |
23 | 23 |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 // the same thread. So just use the heuristic that any all-lowercase a-z | 180 // the same thread. So just use the heuristic that any all-lowercase a-z |
181 // hostname with the right number of characters is likely from the detector | 181 // hostname with the right number of characters is likely from the detector |
182 // (and thus should be blocked). | 182 // (and thus should be blocked). |
183 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) && | 183 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) && |
184 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == | 184 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == |
185 std::string::npos)) ? | 185 std::string::npos)) ? |
186 net::ERR_NAME_NOT_RESOLVED : | 186 net::ERR_NAME_NOT_RESOLVED : |
187 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist, | 187 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist, |
188 os_error); | 188 os_error); |
189 } | 189 } |
OLD | NEW |