Update to Chromium version 71.0.3578.0 (#599034)

This commit is contained in:
Marshall Greenblatt
2018-10-24 16:37:39 -04:00
parent f9ebe693e4
commit 315b57e9f7
63 changed files with 505 additions and 413 deletions

View File

@ -200,8 +200,8 @@ bool CefImageImpl::GetRepresentationInfo(float scale_factor,
return false;
actual_scale_factor = rep.scale();
pixel_width = rep.sk_bitmap().width();
pixel_height = rep.sk_bitmap().height();
pixel_width = rep.GetBitmap().width();
pixel_height = rep.GetBitmap().height();
return true;
}
@ -336,7 +336,7 @@ const SkBitmap* CefImageImpl::GetBitmap(float scale_factor) const {
if (rep.is_null())
return nullptr;
return &rep.sk_bitmap();
return &rep.GetBitmap();
}
// static