diff --git a/libcef/renderer/browser_impl.cc b/libcef/renderer/browser_impl.cc index 73b5ec046..5095e4b1e 100644 --- a/libcef/renderer/browser_impl.cc +++ b/libcef/renderer/browser_impl.cc @@ -750,8 +750,6 @@ void CefBrowserImpl::OnResponseAck(int request_id) { } void CefBrowserImpl::OnLoadingStateChange(bool isLoading) { - content::RenderViewImpl* render_view_impl = - static_cast(render_view()); if (is_swapped_out()) return; @@ -774,8 +772,6 @@ void CefBrowserImpl::OnLoadingStateChange(bool isLoading) { } void CefBrowserImpl::OnLoadStart(WebKit::WebFrame* frame) { - content::RenderViewImpl* render_view_impl = - static_cast(render_view()); if (is_swapped_out()) return; @@ -794,8 +790,6 @@ void CefBrowserImpl::OnLoadStart(WebKit::WebFrame* frame) { } void CefBrowserImpl::OnLoadEnd(WebKit::WebFrame* frame) { - content::RenderViewImpl* render_view_impl = - static_cast(render_view()); if (is_swapped_out()) return;