From e4cfc52c296dfe509c7ecedfeb5a9bcf2974551d Mon Sep 17 00:00:00 2001 From: deepak1556 Date: Tue, 22 Jan 2019 17:20:42 +0530 Subject: [PATCH] Remove const interfaces from content::RenderProcessHost. https://chromium-review.googlesource.com/c/chromium/src/+/1356004 --- atom/browser/api/atom_api_web_contents.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom/browser/api/atom_api_web_contents.cc b/atom/browser/api/atom_api_web_contents.cc index fc16202174f..6ea37533cd3 100644 --- a/atom/browser/api/atom_api_web_contents.cc +++ b/atom/browser/api/atom_api_web_contents.cc @@ -1126,7 +1126,7 @@ void WebContents::SetBackgroundThrottling(bool allowed) { return; } - const auto* render_process_host = render_view_host->GetProcess(); + auto* render_process_host = render_view_host->GetProcess(); if (!render_process_host) { return; }