Home | History | Annotate | Download | only in message_loop

Lines Matching defs:MessageLoopForIO

92   //   MessageLoopForIO.
613 // MessageLoopForIO extends MessageLoop with methods that are particular to a
617 // MessageLoopForIO::current()->...call some method...
619 class BASE_EXPORT MessageLoopForIO : public MessageLoop {
621 MessageLoopForIO();
623 // Returns the MessageLoopForIO of the current thread.
624 static MessageLoopForIO* current() {
627 return static_cast<MessageLoopForIO*>(loop);
684 // Do not add any member variables to MessageLoopForIO! This is important b/c
685 // MessageLoopForIO is often allocated via MessageLoop(TYPE_IO). Any extra
687 static_assert(sizeof(MessageLoop) == sizeof(MessageLoopForIO),
688 "MessageLoopForIO should not have extra member variables");