Home | History | Annotate | Download | only in threading

Lines Matching refs:MessageLoop

22 // A simple thread abstraction that establishes a MessageLoop on a new thread.
23 // The consumer uses the MessageLoop of the thread to cause code to execute on
33 // (2) MessageLoop::~MessageLoop
34 // (3.b) MessageLoop::DestructionObserver::WillDestroyCurrentMessageLoop
41 Options(MessageLoop::Type type, size_t size);
46 MessageLoop::Type message_loop_type;
51 // Used to create the MessagePump for the MessageLoop. The callback is Run()
54 // MessageLoop::Type to TYPE_CUSTOM.
131 // Returns the message loop for this thread. Use the MessageLoop's
136 // NOTE: You must not call this MessageLoop's Quit method directly. Use
139 MessageLoop* message_loop() const { return message_loop_; }
182 virtual void Run(MessageLoop* message_loop);
190 void set_message_loop(MessageLoop* message_loop) {
230 MessageLoop* message_loop_;