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

Unified Diff: chrome/service/gaia/service_gaia_authenticator.h

Issue 8373021: Convert URLFetcher::Delegates to use an interface in content/public/common. Also remove the old U... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync and remove unncessary forward declares Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698