2015-03-11 19:44:11 +01:00
|
|
|
diff --git url_request.h url_request.h
|
2016-03-16 03:55:59 +01:00
|
|
|
index d3b0b7a..0adec6f 100644
|
2015-03-11 19:44:11 +01:00
|
|
|
--- url_request.h
|
|
|
|
+++ url_request.h
|
2016-03-16 03:55:59 +01:00
|
|
|
@@ -675,10 +675,10 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
|
2015-06-06 00:06:48 +02:00
|
|
|
// or after the response headers are received.
|
|
|
|
void GetConnectionAttempts(ConnectionAttempts* out) const;
|
2015-03-11 19:44:11 +01:00
|
|
|
|
|
|
|
- protected:
|
|
|
|
// Allow the URLRequestJob class to control the is_pending() flag.
|
|
|
|
void set_is_pending(bool value) { is_pending_ = value; }
|
|
|
|
|
|
|
|
+ protected:
|
|
|
|
// Allow the URLRequestJob class to set our status too
|
|
|
|
void set_status(const URLRequestStatus& value) { status_ = value; }
|
|
|
|
|