summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-22 05:10:24 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-22 05:10:24 +0000
commit72a3ce556f70637bfa196901c92652d023b96f7f (patch)
treef62634f2d3f4faf2aec3d2231de59d63f96ccd36 /net/http
parent0c7ae740f862bae6dc245d378b9bc515f62e73ab (diff)
downloadchromium_src-72a3ce556f70637bfa196901c92652d023b96f7f.zip
chromium_src-72a3ce556f70637bfa196901c92652d023b96f7f.tar.gz
chromium_src-72a3ce556f70637bfa196901c92652d023b96f7f.tar.bz2
base::Bind: More low-hanging fruit in webkit/appcache.
BUG=none TEST=none R=csilv Review URL: http://codereview.chromium.org/8949063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115486 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r--net/http/http_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h
index 9d1b9aa..ab8e4ad 100644
--- a/net/http/http_cache.h
+++ b/net/http/http_cache.h
@@ -315,14 +315,14 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory,
// to completion.
void DoneWithEntry(ActiveEntry* entry, Transaction* trans, bool cancel);
- // Called when the transaction has finished writting to this entry. |success|
+ // Called when the transaction has finished writing to this entry. |success|
// is false if the cache entry should be deleted.
void DoneWritingToEntry(ActiveEntry* entry, bool success);
// Called when the transaction has finished reading from this entry.
void DoneReadingFromEntry(ActiveEntry* entry, Transaction* trans);
- // Convers the active writter transaction to a reader so that other
+ // Converts the active writer transaction to a reader so that other
// transactions can start reading from this entry.
void ConvertWriterToReader(ActiveEntry* entry);