mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Format with clang-tidy (see #3632)
This commit is contained in:
@@ -90,8 +90,8 @@ void RunFileDialogDismissed(CefRefPtr<CefRunFileDialogCallback> callback,
|
||||
const std::vector<base::FilePath>& file_paths) {
|
||||
std::vector<CefString> paths;
|
||||
if (file_paths.size() > 0) {
|
||||
for (size_t i = 0; i < file_paths.size(); ++i) {
|
||||
paths.push_back(file_paths[i].value());
|
||||
for (const auto& file_path : file_paths) {
|
||||
paths.push_back(file_path.value());
|
||||
}
|
||||
}
|
||||
callback->OnFileDialogDismissed(paths);
|
||||
|
Reference in New Issue
Block a user