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:
@ -56,8 +56,9 @@ void MainMessageLoopExternalPump::OnScheduleWork(int64 delay_ms) {
|
||||
DoWork();
|
||||
} else {
|
||||
// Never wait longer than the maximum allowed time.
|
||||
if (delay_ms > kMaxTimerDelay)
|
||||
if (delay_ms > kMaxTimerDelay) {
|
||||
delay_ms = kMaxTimerDelay;
|
||||
}
|
||||
|
||||
// Results in call to OnTimerTimeout() after the specified delay.
|
||||
SetTimer(delay_ms);
|
||||
|
Reference in New Issue
Block a user