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

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

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix double registration in Chrome Frame test. 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/intranet_redirect_detector.h ('k') | chrome/browser/io_thread.h » ('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/rand_util.h" 9 #include "base/rand_util.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "chrome/browser/browser_process.h" 12 #include "chrome/browser/browser_process.h"
13 #include "chrome/browser/prefs/pref_registry_simple.h"
13 #include "chrome/browser/prefs/pref_service.h" 14 #include "chrome/browser/prefs/pref_service.h"
14 #include "chrome/common/chrome_switches.h" 15 #include "chrome/common/chrome_switches.h"
15 #include "chrome/common/pref_names.h" 16 #include "chrome/common/pref_names.h"
16 #include "net/base/load_flags.h" 17 #include "net/base/load_flags.h"
17 #include "net/base/net_errors.h" 18 #include "net/base/net_errors.h"
18 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" 19 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
19 #include "net/url_request/url_fetcher.h" 20 #include "net/url_request/url_fetcher.h"
20 #include "net/url_request/url_request_context_getter.h" 21 #include "net/url_request/url_request_context_getter.h"
21 #include "net/url_request/url_request_status.h" 22 #include "net/url_request/url_request_status.h"
22 23
(...skipping 25 matching lines...) Expand all
48 } 49 }
49 50
50 // static 51 // static
51 GURL IntranetRedirectDetector::RedirectOrigin() { 52 GURL IntranetRedirectDetector::RedirectOrigin() {
52 const IntranetRedirectDetector* const detector = 53 const IntranetRedirectDetector* const detector =
53 g_browser_process->intranet_redirect_detector(); 54 g_browser_process->intranet_redirect_detector();
54 return detector ? detector->redirect_origin_ : GURL(); 55 return detector ? detector->redirect_origin_ : GURL();
55 } 56 }
56 57
57 // static 58 // static
58 void IntranetRedirectDetector::RegisterPrefs(PrefServiceSimple* prefs) { 59 void IntranetRedirectDetector::RegisterPrefs(PrefRegistrySimple* registry) {
59 prefs->RegisterStringPref(prefs::kLastKnownIntranetRedirectOrigin, 60 registry->RegisterStringPref(prefs::kLastKnownIntranetRedirectOrigin,
60 std::string()); 61 std::string());
61 } 62 }
62 63
63 void IntranetRedirectDetector::FinishSleep() { 64 void IntranetRedirectDetector::FinishSleep() {
64 in_sleep_ = false; 65 in_sleep_ = false;
65 66
66 // If another fetch operation is still running, cancel it. 67 // If another fetch operation is still running, cancel it.
67 STLDeleteElements(&fetchers_); 68 STLDeleteElements(&fetchers_);
68 resulting_origins_.clear(); 69 resulting_origins_.clear();
69 70
70 // The detector is not needed in Chrome Frame since we have no omnibox there. 71 // The detector is not needed in Chrome Frame since we have no omnibox there.
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 // 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
174 // 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
175 // (and thus should be blocked). 176 // (and thus should be blocked).
176 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) && 177 return ((host.length() == IntranetRedirectDetector::kNumCharsInHostnames) &&
177 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == 178 (host.find_first_not_of("abcdefghijklmnopqrstuvwxyz") ==
178 std::string::npos)) ? 179 std::string::npos)) ?
179 net::ERR_NAME_NOT_RESOLVED : 180 net::ERR_NAME_NOT_RESOLVED :
180 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist, 181 ResolveUsingPrevious(host, address_family, host_resolver_flags, addrlist,
181 os_error); 182 os_error);
182 } 183 }
OLDNEW
« no previous file with comments | « chrome/browser/intranet_redirect_detector.h ('k') | chrome/browser/io_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698