| Index: net/url_request/url_request.h
|
| diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h
|
| index 9ef191c98e4fae832b3ac4991d78c8452cce5a52..81562c2228b4f6831cf1672e34d972e12d666f5c 100644
|
| --- a/net/url_request/url_request.h
|
| +++ b/net/url_request/url_request.h
|
| @@ -40,6 +40,9 @@
|
|
|
| namespace base {
|
| class Value;
|
| +namespace trace_event {
|
| +class MemoryAllocatorDump;
|
| +}
|
|
|
| namespace debug {
|
| class StackTrace;
|
| @@ -655,6 +658,9 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
|
| // Returns the error status of the request.
|
| // Do not use! Going to be protected!
|
| const URLRequestStatus& status() const { return status_; }
|
| +
|
| + void PopulateAllocatorDump(base::trace_event::MemoryAllocatorDump* dump) const;
|
| +
|
| protected:
|
| // Allow the URLRequestJob class to control the is_pending() flag.
|
| void set_is_pending(bool value) { is_pending_ = value; }
|
|
|