mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-06 05:53:54 +01:00
a64237bcb0
Known issues: - The CefLoadCRLSetsFile function needs to be re-implemented (see issue #2497). - Linux: GTK2 support has been removed. The cefclient sample needs to be updated to use GTK3 (see issue #2014).
17 lines
574 B
Diff
17 lines
574 B
Diff
diff --git net/url_request/url_request.h net/url_request/url_request.h
|
|
index a64498d1786c..bf440a5b5f6b 100644
|
|
--- net/url_request/url_request.h
|
|
+++ net/url_request/url_request.h
|
|
@@ -737,10 +737,10 @@ class NET_EXPORT URLRequest : public base::SupportsUserData {
|
|
|
|
base::WeakPtr<URLRequest> GetWeakPtr();
|
|
|
|
- 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(URLRequestStatus status);
|
|
|