Searched defs:ScopedAllowWait (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/base/threading/
H A Dthread_restrictions.h230 // Constructing a ScopedAllowWait temporarily allows waiting on the current
234 class BASE_EXPORT ScopedAllowWait { class in class:base::ThreadRestrictions
236 ScopedAllowWait() { previous_value_ = SetWaitAllowed(true); } function in class:base::ThreadRestrictions::ScopedAllowWait
237 ~ScopedAllowWait() { SetWaitAllowed(previous_value_); }
239 // Whether singleton use is allowed when the ScopedAllowWait was
243 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait);

Completed in 78 milliseconds