From 2a9bdaad375e756b9ec2abba641ec428b76a1294 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 4 Apr 2014 18:48:36 +0000 Subject: [PATCH] Update to Chromium version 33.0.1750.170. git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1750@1642 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- CHROMIUM_BUILD_COMPATIBILITY.txt | 2 +- libcef/browser/browser_host_impl.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHROMIUM_BUILD_COMPATIBILITY.txt b/CHROMIUM_BUILD_COMPATIBILITY.txt index 3cc52bcfc..a963773e3 100644 --- a/CHROMIUM_BUILD_COMPATIBILITY.txt +++ b/CHROMIUM_BUILD_COMPATIBILITY.txt @@ -16,5 +16,5 @@ # 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', } diff --git a/libcef/browser/browser_host_impl.cc b/libcef/browser/browser_host_impl.cc index f88031cd6..effd52e60 100644 --- a/libcef/browser/browser_host_impl.cc +++ b/libcef/browser/browser_host_impl.cc @@ -675,7 +675,7 @@ double CefBrowserHostImpl::GetZoomLevel() { void CefBrowserHostImpl::SetZoomLevel(double zoomLevel) { if (CEF_CURRENTLY_ON_UIT()) { if (web_contents_.get() && web_contents_->GetRenderViewHost()) - web_contents_->GetRenderViewHost()->SetZoomLevel(zoomLevel); + web_contents_->SetZoomLevel(zoomLevel); } else { CEF_POST_TASK(CEF_UIT, base::Bind(&CefBrowserHostImpl::SetZoomLevel, this, zoomLevel));