Index: net/base/file_stream.cc |
diff --git a/net/base/file_stream.cc b/net/base/file_stream.cc |
index cadbaed663edd83fc758056ebf9d809b8661df84..abce8ecbdb114a365613b697b4449dfbd9645da0 100644 |
--- a/net/base/file_stream.cc |
+++ b/net/base/file_stream.cc |
@@ -4,6 +4,7 @@ |
#include "net/base/file_stream.h" |
+#include "base/profiler/scoped_tracker.h" |
#include "net/base/file_stream_context.h" |
#include "net/base/net_errors.h" |
@@ -56,6 +57,10 @@ int FileStream::Seek(base::File::Whence whence, |
int FileStream::Read(IOBuffer* buf, |
int buf_len, |
const CompletionCallback& callback) { |
+ // TODO(vadimt): Remove ScopedTracker below once crbug.com/423948 is fixed. |
+ tracked_objects::ScopedTracker tracking_profile( |
+ FROM_HERE_WITH_EXPLICIT_FUNCTION("423948 FileStream::Read")); |
+ |
if (!IsOpen()) |
return ERR_UNEXPECTED; |