| Index: chrome/browser/intranet_redirect_detector.h
|
| diff --git a/chrome/browser/intranet_redirect_detector.h b/chrome/browser/intranet_redirect_detector.h
|
| index 0f59d996072de8b47ca1c4068b0595235c34e556..5f14c6716517c3bd0edca90bf6181efbf3b642f7 100644
|
| --- a/chrome/browser/intranet_redirect_detector.h
|
| +++ b/chrome/browser/intranet_redirect_detector.h
|
| @@ -11,9 +11,9 @@
|
| #include <vector>
|
|
|
| #include "base/memory/weak_ptr.h"
|
| -#include "content/public/common/url_fetcher_delegate.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| +#include "content/public/common/url_fetcher_delegate.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "net/base/host_resolver_proc.h"
|
| #include "net/base/network_change_notifier.h"
|
| @@ -60,14 +60,14 @@ class IntranetRedirectDetector
|
| static const size_t kNumCharsInHostnames;
|
|
|
| private:
|
| - typedef std::set<content::URLFetcher*> Fetchers;
|
| + typedef std::set<net::URLFetcher*> Fetchers;
|
|
|
| // Called when the seven second startup sleep or the one second network
|
| // switch sleep has finished. Runs any pending fetch.
|
| void FinishSleep();
|
|
|
| // content::URLFetcherDelegate
|
| - virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
|
| + virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
|
|
|
| // NetworkChangeNotifier::IPAddressObserver
|
| virtual void OnIPAddressChanged() OVERRIDE;
|
|
|