chore: fix linter errors in .mm files (#21931)

* chore: fix the "npm run lint:obj" invocation

* chore: fix linter errors in .mm files
This commit is contained in:
Alexey Kuzmin 2020-01-29 18:03:53 +01:00 коммит произвёл GitHub
Родитель 20660285e2
Коммит bc0f5acc73
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 13 добавлений и 5 удалений

Просмотреть файл

@ -281,8 +281,8 @@ async function main () {
const opts = parseCommandLine()
// no mode specified? run 'em all
if (!opts['c++'] && !opts.javascript && !opts.python && !opts.gn && !opts.patches) {
opts['c++'] = opts.javascript = opts.python = opts.gn = opts.patches = true
if (!opts['c++'] && !opts.javascript && !opts.objc && !opts.python && !opts.gn && !opts.patches) {
opts['c++'] = opts.javascript = opts.objc = opts.python = opts.gn = opts.patches = true
}
const linters = LINTERS.filter(x => opts[x.key])

Просмотреть файл

@ -33,9 +33,9 @@ static base::mac::ScopedObjCClassSwizzler* g_swizzle_imk_input_session;
// not have fatal OOM occur while this method executes, but it is better
// than crashing when using IME.
base::allocator::SetCallNewHandlerOnMallocFailure(false);
g_swizzle_imk_input_session
->InvokeOriginal<void, NSRange, long long, void (^)(void)>(
self, _cmd, range, attributes, block);
g_swizzle_imk_input_session->InvokeOriginal<
void, NSRange, long long, void (^)(void)>( // NOLINT(runtime/int)
self, _cmd, range, attributes, block);
base::allocator::SetCallNewHandlerOnMallocFailure(true);
}
@end

Просмотреть файл

@ -7,7 +7,9 @@
#include <AvailabilityMacros.h>
#include <objc/objc-runtime.h>
#include <algorithm>
#include <string>
#include <utility>
#include <vector>
#include "base/mac/mac_util.h"

Просмотреть файл

@ -10,6 +10,9 @@
#import <sys/mount.h>
#import <sys/param.h>
#include <string>
#include <utility>
#include "gin/dictionary.h"
#include "shell/browser/browser.h"
#include "shell/common/gin_converters/callback_converter.h"

Просмотреть файл

@ -5,6 +5,8 @@
#import "shell/browser/ui/cocoa/atom_menu_controller.h"
#include <utility>
#include "base/logging.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"

Просмотреть файл

@ -5,6 +5,7 @@
#import "shell/browser/ui/cocoa/atom_touch_bar.h"
#include <string>
#include <utility>
#include <vector>
#include "base/strings/sys_string_conversions.h"