diff options
Diffstat (limited to 'webkit/appcache/appcache_storage_impl.cc')
-rw-r--r-- | webkit/appcache/appcache_storage_impl.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_storage_impl.cc b/webkit/appcache/appcache_storage_impl.cc index e2a0b26..617bc27 100644 --- a/webkit/appcache/appcache_storage_impl.cc +++ b/webkit/appcache/appcache_storage_impl.cc @@ -44,7 +44,9 @@ static const FilePath::CharType kDiskCacheDirectoryName[] = namespace { -// Helper with no return value for use with NewRunnableFunction. +// Helper with no return value for use with base::Bind. +// TODO(jhawkins): Figure out why base::IgnoreResult does not work for +// file_util::Delete on Windows. void DeleteDirectory(const FilePath& path) { file_util::Delete(path, true); } |