| Index: net/disk_cache/simple/simple_synchronous_entry.h
|
| diff --git a/net/disk_cache/simple/simple_synchronous_entry.h b/net/disk_cache/simple/simple_synchronous_entry.h
|
| index 870b69733e486e907821407d4b675b898fb22670..4503a9f69e181f91e13e16223a218667eced2dec 100644
|
| --- a/net/disk_cache/simple/simple_synchronous_entry.h
|
| +++ b/net/disk_cache/simple/simple_synchronous_entry.h
|
| @@ -35,12 +35,12 @@ class SimpleSynchronousEntry {
|
| // objects, for instance after OpenEntry() or CreateEntry(). |new_entry| is
|
| // the newly created SimpleSynchronousEntry, constructed on the worker pool
|
| // thread. |new_entry| == NULL in the case of error.
|
| - typedef base::Callback<void(SimpleSynchronousEntry* /* new_entry */)>
|
| + typedef base::Callback<void(SimpleSynchronousEntry* new_entry)>
|
| SynchronousCreationCallback;
|
|
|
| // Callback type for IO operations on an entry not requiring special callback
|
| // arguments (e.g. Write). |result| is a net::Error result code.
|
| - typedef base::Callback<void(int /* result */)> SynchronousOperationCallback;
|
| + typedef base::Callback<void(int result)> SynchronousOperationCallback;
|
|
|
| static void OpenEntry(
|
| const base::FilePath& path,
|
|
|