mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update source files for bracket style
This commit is contained in:
@ -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));
|
||||
}
|
||||
|
Reference in New Issue
Block a user