diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-11 10:18:59 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-11 10:18:59 +0000 |
commit | 9acd869ec5621373757a6959310f39e1f5ec3f3d (patch) | |
tree | 43b9beab430d066670b7515579e20c755d9a0d4d /webkit/appcache/appcache_url_request_job.h | |
parent | 3f45597ed0041c49a627fd5e2be55ff6d5570022 (diff) | |
download | chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.zip chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.tar.gz chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.tar.bz2 |
net: Remove typedef net::URLRequestJob URLRequestJob;
BUG=64263
TEST=compiled locally, trybots
Review URL: http://codereview.chromium.org/5607004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68935 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_url_request_job.h')
-rw-r--r-- | webkit/appcache/appcache_url_request_job.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/appcache/appcache_url_request_job.h b/webkit/appcache/appcache_url_request_job.h index 7491e71..2b97291 100644 --- a/webkit/appcache/appcache_url_request_job.h +++ b/webkit/appcache/appcache_url_request_job.h @@ -16,7 +16,7 @@ namespace appcache { -// A URLRequestJob derivative that knows how to return a response stored +// A net::URLRequestJob derivative that knows how to return a response stored // in the appcache. class AppCacheURLRequestJob : public net::URLRequestJob, public AppCacheStorage::Delegate { @@ -55,7 +55,7 @@ class AppCacheURLRequestJob : public net::URLRequestJob, int64 cache_id() { return cache_id_; } const AppCacheEntry& entry() { return entry_; } - // URLRequestJob's Kill method is made public so the users of this + // net::URLRequestJob's Kill method is made public so the users of this // class in the appcache namespace can call it. virtual void Kill(); @@ -104,7 +104,7 @@ class AppCacheURLRequestJob : public net::URLRequestJob, // AppCacheResponseReader completion callback void OnReadComplete(int result); - // URLRequestJob methods, see url_request_job.h for doc comments + // net::URLRequestJob methods, see url_request_job.h for doc comments virtual void Start(); virtual net::LoadState GetLoadState() const; virtual bool GetCharset(std::string* charset); |