mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-30 11:04:52 +01:00
8da8a4fbf1
- The ffmpeg library is now statically linked (see https://codereview.chromium.org/1141703002). - Off-screen rendering of the PDF viewer does not work in combination with surfaces. Pass the `--disable-surfaces` command-line flag if GPU is enabled (see https://codereview.chromium.org/1169983006).
17 lines
607 B
Diff
17 lines
607 B
Diff
diff --git url_request.h url_request.h
|
|
index 4176689..1fe5976 100644
|
|
--- url_request.h
|
|
+++ url_request.h
|
|
@@ -614,10 +614,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; }
|
|
|