Fix cpplint errors in inspectable_web_contents.cc
This commit is contained in:
parent
ef5992b0eb
commit
c97a22ef8d
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue