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

Unified Diff: content/public/common/url_fetcher_delegate.h

Issue 8375039: Create a content::UrlFetcher interface that lives in content/public/common and convert users to i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync 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: content/public/common/url_fetcher_delegate.h
===================================================================
--- content/public/common/url_fetcher_delegate.h (revision 107061)
+++ content/public/common/url_fetcher_delegate.h (working copy)
@@ -8,15 +8,16 @@
#include "content/common/content_export.h"
+namespace content {
+
class URLFetcher;
-namespace content {
// A delegate interface for users of URLFetcher.
class CONTENT_EXPORT URLFetcherDelegate {
public:
// This will be called when the URL has been fetched, successfully or not.
// Use accessor methods on |source| to get the results.
- virtual void OnURLFetchComplete(const URLFetcher* source) = 0;
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) = 0;
willchan no longer on Chromium 2011/10/25 16:59:49 Is this content:: necessary? I suspect name resolu
jam 2011/10/25 17:16:20 no it's not, done.
protected:
virtual ~URLFetcherDelegate() {}

Powered by Google App Engine
This is Rietveld 408576698