chore: fix clang-tidy warnings (#38079)
* chore: fix clang-tidy warnings * refactor: avoid need for NOLINTNEXTLINE
This commit is contained in:
parent
fe5cdd39d6
commit
08593fd2bd
20 changed files with 41 additions and 37 deletions
|
@ -166,8 +166,8 @@ class AsarURLLoader : public network::mojom::URLLoader {
|
|||
auto asar_validator = std::make_unique<AsarFileValidator>(
|
||||
std::move(info.integrity.value()), std::move(file));
|
||||
file_validator_raw = asar_validator.get();
|
||||
readable_data_source.reset(new mojo::FilteredDataSource(
|
||||
std::move(file_data_source), std::move(asar_validator)));
|
||||
readable_data_source = std::make_unique<mojo::FilteredDataSource>(
|
||||
std::move(file_data_source), std::move(asar_validator));
|
||||
} else {
|
||||
readable_data_source = std::move(file_data_source);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue