Update source files for bracket style

This commit is contained in:
Marshall Greenblatt
2023-01-02 17:59:03 -05:00
parent d84b07a5cb
commit 3af3eab3e4
366 changed files with 7275 additions and 3834 deletions

View File

@ -49,13 +49,15 @@ bool CefWaitableEventImpl::IsSignaled() {
}
void CefWaitableEventImpl::Wait() {
if (!AllowWait())
if (!AllowWait()) {
return;
}
event_.Wait();
}
bool CefWaitableEventImpl::TimedWait(int64 max_ms) {
if (!AllowWait())
if (!AllowWait()) {
return false;
}
return event_.TimedWait(base::Milliseconds(max_ms));
}