| Index: chrome/service/gaia/service_gaia_authenticator.h
|
| ===================================================================
|
| --- chrome/service/gaia/service_gaia_authenticator.h (revision 106929)
|
| +++ chrome/service/gaia/service_gaia_authenticator.h (working copy)
|
| @@ -8,10 +8,11 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/synchronization/waitable_event.h"
|
| #include "chrome/common/net/gaia/gaia_authenticator.h"
|
| -#include "content/common/net/url_fetcher.h"
|
| +#include "content/public/common/url_fetcher_delegate.h"
|
|
|
| namespace base {
|
| class MessageLoopProxy;
|
| @@ -21,7 +22,7 @@
|
| // we cannot rely on the existence of a Profile)
|
| class ServiceGaiaAuthenticator
|
| : public base::RefCountedThreadSafe<ServiceGaiaAuthenticator>,
|
| - public URLFetcher::Delegate,
|
| + public content::URLFetcherDelegate,
|
| public gaia::GaiaAuthenticator {
|
| public:
|
| ServiceGaiaAuthenticator(const std::string& user_agent,
|
| @@ -30,7 +31,7 @@
|
| base::MessageLoopProxy* io_message_loop_proxy);
|
| virtual ~ServiceGaiaAuthenticator();
|
|
|
| - // URLFetcher::Delegate implementation.
|
| + // content::URLFetcherDelegate implementation.
|
| virtual void OnURLFetchComplete(const URLFetcher *source) OVERRIDE;
|
|
|
| protected:
|
|
|