| 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 #ifndef CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_ | 5 #ifndef CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_ |
| 6 #define CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_ | 6 #define CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 static void RegisterPrefs(PrefRegistrySimple* registry); | 55 static void RegisterPrefs(PrefRegistrySimple* registry); |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 typedef std::set<net::URLFetcher*> Fetchers; | 58 typedef std::set<net::URLFetcher*> Fetchers; |
| 59 | 59 |
| 60 // Called when the seven second startup sleep or the one second network | 60 // Called when the seven second startup sleep or the one second network |
| 61 // switch sleep has finished. Runs any pending fetch. | 61 // switch sleep has finished. Runs any pending fetch. |
| 62 void FinishSleep(); | 62 void FinishSleep(); |
| 63 | 63 |
| 64 // net::URLFetcherDelegate | 64 // net::URLFetcherDelegate |
| 65 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; | 65 virtual void OnURLFetchComplete(const net::URLFetcher* source) override; |
| 66 | 66 |
| 67 // NetworkChangeNotifier::IPAddressObserver | 67 // NetworkChangeNotifier::IPAddressObserver |
| 68 virtual void OnIPAddressChanged() OVERRIDE; | 68 virtual void OnIPAddressChanged() override; |
| 69 | 69 |
| 70 GURL redirect_origin_; | 70 GURL redirect_origin_; |
| 71 Fetchers fetchers_; | 71 Fetchers fetchers_; |
| 72 std::vector<GURL> resulting_origins_; | 72 std::vector<GURL> resulting_origins_; |
| 73 bool in_sleep_; // True if we're in the seven-second "no fetching" period | 73 bool in_sleep_; // True if we're in the seven-second "no fetching" period |
| 74 // that begins at browser start, or the one-second "no | 74 // that begins at browser start, or the one-second "no |
| 75 // fetching" period that begins after network switches. | 75 // fetching" period that begins after network switches. |
| 76 base::WeakPtrFactory<IntranetRedirectDetector> weak_ptr_factory_; | 76 base::WeakPtrFactory<IntranetRedirectDetector> weak_ptr_factory_; |
| 77 | 77 |
| 78 DISALLOW_COPY_AND_ASSIGN(IntranetRedirectDetector); | 78 DISALLOW_COPY_AND_ASSIGN(IntranetRedirectDetector); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 #endif // CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_ | 81 #endif // CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_ |
| OLD | NEW |