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() {} |