Use int64 instead of uint64 for CefURLRequestClient progress notifications (issue #1202).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1968 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2015-01-12 20:46:31 +00:00
parent 04e072ca40
commit a2d690a9bd
6 changed files with 22 additions and 22 deletions

View File

@ -36,7 +36,7 @@ void CEF_CALLBACK urlrequest_client_on_request_complete(
void CEF_CALLBACK urlrequest_client_on_upload_progress(
struct _cef_urlrequest_client_t* self, cef_urlrequest_t* request,
uint64 current, uint64 total) {
int64 current, int64 total) {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
DCHECK(self);
@ -56,7 +56,7 @@ void CEF_CALLBACK urlrequest_client_on_upload_progress(
void CEF_CALLBACK urlrequest_client_on_download_progress(
struct _cef_urlrequest_client_t* self, cef_urlrequest_t* request,
uint64 current, uint64 total) {
int64 current, int64 total) {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
DCHECK(self);