Update to Chromium version 54.0.2840.59

This commit is contained in:
Marshall Greenblatt
2016-10-14 16:57:43 -04:00
parent bf6e3f5e98
commit 4e029f4dc2
15 changed files with 96 additions and 35 deletions

View File

@@ -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_t current,
int64_t 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_t current,
int64_t total,
int64_t current_network_bytes) {
context_->OnDownloadProgress(current, total);
}