Update to Chromium version 33.0.1750.170.

git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1750@1642 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2014-04-04 18:48:36 +00:00
parent ca8c1753e0
commit 2a9bdaad37
2 changed files with 2 additions and 2 deletions

View File

@ -16,5 +16,5 @@
# http://dev.chromium.org/developers/how-tos/get-the-code # http://dev.chromium.org/developers/how-tos/get-the-code
{ {
'release_url': 'http://src.chromium.org/svn/releases/33.0.1750.117', 'release_url': 'http://src.chromium.org/svn/releases/33.0.1750.170',
} }

View File

@ -675,7 +675,7 @@ double CefBrowserHostImpl::GetZoomLevel() {
void CefBrowserHostImpl::SetZoomLevel(double zoomLevel) { void CefBrowserHostImpl::SetZoomLevel(double zoomLevel) {
if (CEF_CURRENTLY_ON_UIT()) { if (CEF_CURRENTLY_ON_UIT()) {
if (web_contents_.get() && web_contents_->GetRenderViewHost()) if (web_contents_.get() && web_contents_->GetRenderViewHost())
web_contents_->GetRenderViewHost()->SetZoomLevel(zoomLevel); web_contents_->SetZoomLevel(zoomLevel);
} else { } else {
CEF_POST_TASK(CEF_UIT, CEF_POST_TASK(CEF_UIT,
base::Bind(&CefBrowserHostImpl::SetZoomLevel, this, zoomLevel)); base::Bind(&CefBrowserHostImpl::SetZoomLevel, this, zoomLevel));