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

Unified Diff: net/base/file_stream_context.h

Issue 761903003: Update from https://crrev.com/306655 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « net/base/elements_upload_data_stream.cc ('k') | net/base/file_stream_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/file_stream_context.h
diff --git a/net/base/file_stream_context.h b/net/base/file_stream_context.h
index 5493e251c66a2d2bf6b66a3fc7a63e09608c4713..82a2412f2c659c9ecceecb7232af7f6970a8b308 100644
--- a/net/base/file_stream_context.h
+++ b/net/base/file_stream_context.h
@@ -100,11 +100,11 @@ class FileStream::Context {
private:
struct IOResult {
IOResult();
- IOResult(int64 result, int os_error);
- static IOResult FromOSError(int64 os_error);
+ IOResult(int64 result, logging::SystemErrorCode os_error);
+ static IOResult FromOSError(logging::SystemErrorCode os_error);
int64 result;
- int os_error; // Set only when result < 0.
+ logging::SystemErrorCode os_error; // Set only when result < 0.
};
struct OpenResult {
« no previous file with comments | « net/base/elements_upload_data_stream.cc ('k') | net/base/file_stream_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698