HomeSort by relevance Sort by last modified time
    Searched refs:NestingObserver (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/message_loop/
message_loop.h 165 // A NestingObserver is notified when a nested message loop begins. The
167 class BASE_EXPORT NestingObserver {
172 virtual ~NestingObserver();
175 void AddNestingObserver(NestingObserver* observer);
176 void RemoveNestingObserver(NestingObserver* observer);
441 ObserverList<NestingObserver> nesting_observers_;
message_loop.cc 78 MessageLoop::NestingObserver::~NestingObserver() {}
217 void MessageLoop::AddNestingObserver(NestingObserver* observer) {
223 void MessageLoop::RemoveNestingObserver(NestingObserver* observer) {
message_loop_test.cc 374 // A NestingObserver that tracks the number of nested message loop starts it
376 class TestNestingObserver : public MessageLoop::NestingObserver {
383 // MessageLoop::NestingObserver:
417 // Tests that a NestingObserver is notified when a nested message loop begins.
    [all...]

Completed in 851 milliseconds