Index: net/base/file_stream_context.h |
diff --git a/net/base/file_stream_context.h b/net/base/file_stream_context.h |
index c4a06ee1de62c4168675ae47d3150fc65069670b..db6b43387f0f9e6137f73ab5ffa2dd86c3205849 100644 |
--- a/net/base/file_stream_context.h |
+++ b/net/base/file_stream_context.h |
@@ -66,9 +66,7 @@ class FileStream::Context { |
~Context(); |
#endif |
- int ReadAsync(IOBuffer* buf, |
- int buf_len, |
- const CompletionCallback& callback); |
+ int ReadAsync(IOBuffer* buf, int buf_len, const CompletionCallback& callback); |
int WriteAsync(IOBuffer* buf, |
int buf_len, |
@@ -145,12 +143,12 @@ class FileStream::Context { |
void OnAsyncCompleted(const Int64CompletionCallback& callback, |
const IOResult& result); |
- //////////////////////////////////////////////////////////////////////////// |
- // Helper stuff which is platform-dependent but is used in the platform- |
- // independent code implemented in file_stream_context.cc. These helpers were |
- // introduced solely to implement as much of the Context methods as |
- // possible independently from platform. |
- //////////////////////////////////////////////////////////////////////////// |
+//////////////////////////////////////////////////////////////////////////// |
+// Helper stuff which is platform-dependent but is used in the platform- |
+// independent code implemented in file_stream_context.cc. These helpers were |
+// introduced solely to implement as much of the Context methods as |
+// possible independently from platform. |
+//////////////////////////////////////////////////////////////////////////// |
#if defined(OS_WIN) |
int GetLastErrno() { return GetLastError(); } |