Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: chrome/browser/intranet_redirect_detector.cc

Issue 12211105: Move remaining non-test, non-Chrome-specific Prefs code to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments, merge to LKGR. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/intents/web_intents_util.cc ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
10 #include "base/prefs/pref_service.h"
9 #include "base/rand_util.h" 11 #include "base/rand_util.h"
10 #include "base/stl_util.h" 12 #include "base/stl_util.h"
11 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
12 #include "chrome/browser/browser_process.h" 14 #include "chrome/browser/browser_process.h"
13 #include "chrome/browser/prefs/pref_registry_simple.h"
14 #include "chrome/browser/prefs/pref_service.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
24 const size_t IntranetRedirectDetector::kNumCharsInHostnames = 10; 24 const size_t IntranetRedirectDetector::kNumCharsInHostnames = 10;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // the same thread. So just use the heuristic that any all-lowercase a-z 174 // the same thread. So just use the heuristic that any all-lowercase a-z
175 // hostname with the right number of characters is likely from the detector 175 // hostname with the right number of characters is likely from the detector
176 // (and thus should be blocked). 176 // (and thus should be blocked).
177 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) && 177 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) &&
178 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == 178 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") ==
179 std::string::npos)) ? 179 std::string::npos)) ?
180 net::ERR_NAME_NOT_RESOLVED : 180 net::ERR_NAME_NOT_RESOLVED :
181 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist, 181 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist,
182 os_error); 182 os_error);
183 } 183 }
OLDNEW
« no previous file with comments | « chrome/browser/intents/web_intents_util.cc ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698