Fix linting

This commit is contained in:
Gabriel Handford 2016-10-14 12:38:55 -07:00 committed by Cheng Zhao
parent c78567aba6
commit cfd2a029ad
4 changed files with 9 additions and 6 deletions

View file

@ -60,7 +60,8 @@ bool OpenExternal(
if (args->Length() >= 3) {
v8::Local<v8::Value> peek = args->PeekNext();
platform_util::OpenExternalCallback callback;
if (mate::Converter<platform_util::OpenExternalCallback>::FromV8(args->isolate(), peek, &callback)) {
if (mate::Converter<platform_util::OpenExternalCallback>::FromV8(
args->isolate(), peek, &callback)) {
return platform_util::OpenExternal(url, activate, callback);
}
return false;