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

Unified Diff: services/url_response_disk_cache/url_response_disk_cache_impl.h

Issue 1133283002: Android handler: Fix name collision. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix app tests. Created 5 years, 7 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
Index: services/url_response_disk_cache/url_response_disk_cache_impl.h
diff --git a/services/url_response_disk_cache/url_response_disk_cache_impl.h b/services/url_response_disk_cache/url_response_disk_cache_impl.h
index 1154edced2d886266f82b6838bbf9bbacc48e74b..3c126d8552b50d425375245574aaae697ad3b26e 100644
--- a/services/url_response_disk_cache/url_response_disk_cache_impl.h
+++ b/services/url_response_disk_cache/url_response_disk_cache_impl.h
@@ -38,13 +38,16 @@ class URLResponseDiskCacheImpl : public URLResponseDiskCache {
// Internal implementation of |GetExtractedContent|. The parameters are:
// |callback|: The callback to return values to the caller. It uses FilePath
// instead of mojo arrays.
- // |cache_dir|: The cache dir to return to the consumer.
+ // |base_dir|: The base directory for caching data associated to the response.
+ // |extracted_dir|: The directory where the file content must be extracted. It
+ // will be returned to the consumer.
// |content|: The content of the body of the response.
- // |dir|: The base directory under which all data for the response is stored.
+ // |cache_dir|: The directory the user can user to cache its own content.
void GetExtractedContentInternal(const FilePathPairCallback& callback,
- const base::FilePath& cache_dir,
+ const base::FilePath& base_dir,
+ const base::FilePath& extracted_dir,
const base::FilePath& content,
- const base::FilePath& dir);
+ const base::FilePath& cache_dir);
scoped_refptr<base::SequencedWorkerPool> worker_pool_;
base::FilePath base_directory_;

Powered by Google App Engine
This is Rietveld 408576698