mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove CEF-specific integer and char16 typedef's (see #3507)
This commit is contained in:
@ -32,15 +32,15 @@ class RequestClient : public CefURLRequestClient, public State {
|
||||
}
|
||||
|
||||
void OnUploadProgress(CefRefPtr<CefURLRequest> request,
|
||||
int64 current,
|
||||
int64 total) override {
|
||||
int64_t current,
|
||||
int64_t total) override {
|
||||
upload_progress_ct_++;
|
||||
upload_total_ = total;
|
||||
}
|
||||
|
||||
void OnDownloadProgress(CefRefPtr<CefURLRequest> request,
|
||||
int64 current,
|
||||
int64 total) override {
|
||||
int64_t current,
|
||||
int64_t total) override {
|
||||
response_ = request->GetResponse();
|
||||
DCHECK(response_.get());
|
||||
DCHECK(response_->IsReadOnly());
|
||||
|
Reference in New Issue
Block a user