Chromium Code Reviews| Index: shell/application_manager/network_fetcher.h |
| diff --git a/shell/application_manager/network_fetcher.h b/shell/application_manager/network_fetcher.h |
| index 2ef483be2ca1cdd2c366e5bafe0462fe5a08ef2a..d7bea830bda3a41876f0b8a16a9a0cfaa79c02ca 100644 |
| --- a/shell/application_manager/network_fetcher.h |
| +++ b/shell/application_manager/network_fetcher.h |
| @@ -49,18 +49,19 @@ class NetworkFetcher : public Fetcher { |
| // are not loaded from cache to allow effective development. |
| bool CanLoadDirectlyFromCache(); |
| - void LoadFromCache(bool schedule_update); |
| + void LoadFromCache(); |
|
etiennej
2015/09/22 14:53:29
Some documentation on these methods would be helpf
qsr
2015/09/24 08:08:24
Done.
|
| - void OnCachedResponseReceived(bool schedule_update, |
| - mojo::URLResponsePtr response, |
| - mojo::Array<uint8_t> path_as_array, |
| - mojo::Array<uint8_t> cache_dir); |
| + void OnResponseReceived(bool schedule_update, |
| + mojo::URLResponsePtr response, |
| + mojo::Array<uint8_t> path_as_array, |
| + mojo::Array<uint8_t> cache_dir); |
| void StartNetworkRequest(); |
| void OnLoadComplete(mojo::URLResponsePtr response); |
| - void OnFileSavedToCache(mojo::Array<uint8_t> path_as_array, |
| + void OnFileSavedToCache(mojo::URLResponsePtr response, |
| + mojo::Array<uint8_t> path_as_array, |
| mojo::Array<uint8_t> cache_dir); |
| static void RecordCacheToURLMapping(const base::FilePath& path, |