2015-03-11 19:44:11 +01:00
|
|
|
diff --git url_request.h url_request.h
|
2017-01-23 18:36:54 +01:00
|
|
|
index e1406f3..ed9aa91 100644
|
2015-03-11 19:44:11 +01:00
|
|
|
--- url_request.h
|
|
|
|
+++ url_request.h
|
2017-01-23 18:36:54 +01:00
|
|
|
@@ -651,10 +651,11 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
|
2016-10-17 20:14:44 +02:00
|
|
|
// Returns the error status of the request.
|
|
|
|
// Do not use! Going to be protected!
|
|
|
|
const URLRequestStatus& status() const { return status_; }
|
2015-03-11 19:44:11 +01:00
|
|
|
- protected:
|
2016-10-17 20:14:44 +02:00
|
|
|
+
|
2015-03-11 19:44:11 +01:00
|
|
|
// Allow the URLRequestJob class to control the is_pending() flag.
|
|
|
|
void set_is_pending(bool value) { is_pending_ = value; }
|
|
|
|
|
|
|
|
+ protected:
|
2016-08-31 13:25:56 +02:00
|
|
|
// Allow the URLRequestJob class to set our status too.
|
|
|
|
void set_status(URLRequestStatus status);
|
2015-03-11 19:44:11 +01:00
|
|
|
|