mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-16 20:02:24 +01:00
8aac23386e
- Implement CefRequestHandler::OnBeforeBrowse using NavigationThrottle instead of ResourceThrottle (see http://crbug.com/537634). The CefRequest object passed to OnBeforeBrowse will no longer have an associated request identifier. - Mac: Remove additional helper apps which are no longer required (see http://crbug.com/520680) - Remove the UR_FLAG_REPORT_RAW_HEADERS flag which is no longer supported (see http://crbug.com/517114) - Remove the CefBrowserSettings.java parameter. Java is an NPAPI plugin and NPAPI plugins are no longer supported (see http://crbug.com/470301#c11) - Add CefFormatUrlForSecurityDisplay function in cef_parser.h - Fix crash when passing `--disable-extensions` command-line flag (issue #1721) - Linux: Fix NSS handler loading (issue #1727)
17 lines
607 B
Diff
17 lines
607 B
Diff
diff --git url_request.h url_request.h
|
|
index 9209697..a2f73f8 100644
|
|
--- url_request.h
|
|
+++ url_request.h
|
|
@@ -640,10 +640,10 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
|
|
// or after the response headers are received.
|
|
void GetConnectionAttempts(ConnectionAttempts* out) const;
|
|
|
|
- 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; }
|
|
|