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:
@ -198,8 +198,8 @@ void CefDragDataImpl::AddFile(const CefString& path,
|
||||
const CefString& display_name) {
|
||||
base::AutoLock lock_scope(lock_);
|
||||
CHECK_READONLY_RETURN_VOID();
|
||||
data_.filenames.push_back(
|
||||
ui::FileInfo(base::FilePath(path), base::FilePath(display_name)));
|
||||
data_.filenames.emplace_back(base::FilePath(path),
|
||||
base::FilePath(display_name));
|
||||
}
|
||||
|
||||
void CefDragDataImpl::ClearFilenames() {
|
||||
|
Reference in New Issue
Block a user