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

Unified Diff: content/common/net/url_fetcher_impl.h

Issue 8403017: Rename URLFetcher to be URLFetcherImpl, now that we have the content::URLFetcher interface. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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
« no previous file with comments | « content/common/net/url_fetcher.cc ('k') | content/common/net/url_fetcher_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/net/url_fetcher_impl.h
===================================================================
--- content/common/net/url_fetcher_impl.h (revision 107469)
+++ content/common/net/url_fetcher_impl.h (working copy)
@@ -11,8 +11,8 @@
// temporary situation. We will work on allowing support for multiple "io"
// threads per process.
-#ifndef CONTENT_COMMON_NET_URL_FETCHER_H_
-#define CONTENT_COMMON_NET_URL_FETCHER_H_
+#ifndef CONTENT_COMMON_NET_URL_FETCHER_IMPL_H_
+#define CONTENT_COMMON_NET_URL_FETCHER_IMPL_H_
#pragma once
#include "base/compiler_specific.h"
@@ -24,15 +24,15 @@
class URLFetcherFactory;
}
-class CONTENT_EXPORT URLFetcher : public content::URLFetcher{
+class CONTENT_EXPORT URLFetcherImpl : public content::URLFetcher{
public:
// |url| is the URL to send the request to.
// |request_type| is the type of request to make.
// |d| the object that will receive the callback on fetch completion.
- URLFetcher(const GURL& url,
- RequestType request_type,
- content::URLFetcherDelegate* d);
- virtual ~URLFetcher();
+ URLFetcherImpl(const GURL& url,
+ RequestType request_type,
+ content::URLFetcherDelegate* d);
+ virtual ~URLFetcherImpl();
// content::URLFetcher implementation:
virtual void SetUploadData(const std::string& upload_content_type,
@@ -118,7 +118,7 @@
class Core;
scoped_refptr<Core> core_;
- DISALLOW_COPY_AND_ASSIGN(URLFetcher);
+ DISALLOW_COPY_AND_ASSIGN(URLFetcherImpl);
};
-#endif // CONTENT_COMMON_NET_URL_FETCHER_H_
+#endif // CONTENT_COMMON_NET_URL_FETCHER_IMPL_H_
« no previous file with comments | « content/common/net/url_fetcher.cc ('k') | content/common/net/url_fetcher_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698