Home | History | Annotate | Download | only in threading

Lines Matching refs:MessageLoop

28 // A simple thread abstraction that establishes a MessageLoop on a new thread.
29 // The consumer uses the MessageLoop of the thread to cause code to execute on
39 // (2) MessageLoop::~MessageLoop
40 // (3.b) MessageLoop::DestructionObserver::WillDestroyCurrentMessageLoop
47 Options(MessageLoop::Type type, size_t size);
52 MessageLoop::Type message_loop_type;
57 // Used to create the MessagePump for the MessageLoop. The callback is Run()
60 // MessageLoop::Type to TYPE_CUSTOM.
152 // Returns the message loop for this thread. Use the MessageLoop's
157 // NOTE: You must not call this MessageLoop's Quit method directly. Use
160 MessageLoop* message_loop() const { return message_loop_; }
193 virtual void Run(MessageLoop* message_loop);
201 void set_message_loop(MessageLoop* message_loop) {
242 MessageLoop* message_loop_;