mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 614d31da (#423768)
- Fix PDF extension loading after showing the plugin placeholder (issue #2020)
This commit is contained in:
@ -41,7 +41,9 @@ class CefURLFetcherDelegate : public net::URLFetcherDelegate {
|
||||
// net::URLFetcherDelegate methods.
|
||||
void OnURLFetchComplete(const net::URLFetcher* source) override;
|
||||
void OnURLFetchDownloadProgress(const net::URLFetcher* source,
|
||||
int64 current, int64 total) override;
|
||||
int64 current,
|
||||
int64 total,
|
||||
int64_t current_network_bytes) override;
|
||||
void OnURLFetchUploadProgress(const net::URLFetcher* source,
|
||||
int64 current, int64 total) override;
|
||||
|
||||
@ -402,7 +404,9 @@ void CefURLFetcherDelegate::OnURLFetchComplete(
|
||||
|
||||
void CefURLFetcherDelegate::OnURLFetchDownloadProgress(
|
||||
const net::URLFetcher* source,
|
||||
int64 current, int64 total) {
|
||||
int64 current,
|
||||
int64 total,
|
||||
int64_t current_network_bytes) {
|
||||
context_->OnDownloadProgress(current, total);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user