From 4fb1fffe44e7ffdb5d701a90fefc1b6e71ff1b3c Mon Sep 17 00:00:00 2001 From: Boik Date: Sat, 15 Jul 2017 10:57:16 +0800 Subject: [PATCH] fix lint --- atom/browser/atom_resource_dispatcher_host_delegate.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/atom/browser/atom_resource_dispatcher_host_delegate.cc b/atom/browser/atom_resource_dispatcher_host_delegate.cc index 19359e2ca549..53d91b4be954 100644 --- a/atom/browser/atom_resource_dispatcher_host_delegate.cc +++ b/atom/browser/atom_resource_dispatcher_host_delegate.cc @@ -87,10 +87,11 @@ void OnPdfResourceIntercepted( // by the webui page. // chrome://pdf-viewer/index.html?src=https://somepage/123.pdf content::NavigationController::LoadURLParams params( - GURL(base::StringPrintf("%sindex.html?%s=%s", - kPdfViewerUIOrigin, - kPdfPluginSrc, - net::EscapeUrlEncodedData(original_url.spec(), false).c_str()))); + GURL(base::StringPrintf( + "%sindex.html?%s=%s", + kPdfViewerUIOrigin, + kPdfPluginSrc, + net::EscapeUrlEncodedData(original_url.spec(), false).c_str()))); web_contents->GetController().LoadURLWithParams(params); }