From c97a22ef8d93442ad15708e7b9b90a2900bbf342 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 17:54:14 -0500 Subject: [PATCH] Fix cpplint errors in inspectable_web_contents.cc --- brightray/browser/inspectable_web_contents.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/brightray/browser/inspectable_web_contents.cc b/brightray/browser/inspectable_web_contents.cc index 5e3af6013de3..5090011a203d 100644 --- a/brightray/browser/inspectable_web_contents.cc +++ b/brightray/browser/inspectable_web_contents.cc @@ -6,7 +6,8 @@ namespace brightray { -InspectableWebContents* InspectableWebContents::Create(const content::WebContents::CreateParams& create_params) { +InspectableWebContents* InspectableWebContents::Create( + const content::WebContents::CreateParams& create_params) { auto contents = content::WebContents::Create(create_params); #if defined(OS_MACOSX) // Work around http://crbug.com/279472. @@ -16,8 +17,9 @@ InspectableWebContents* InspectableWebContents::Create(const content::WebContent return Create(contents); } -InspectableWebContents* InspectableWebContents::Create(content::WebContents* web_contents) { +InspectableWebContents* InspectableWebContents::Create( + content::WebContents* web_contents) { return new InspectableWebContentsImpl(web_contents); } -} +} // namespace brightray