Home | History | Annotate | Download | only in message_loop

Lines Matching defs:MessagePumpForUI

97 // MessagePumpForUI public:
99 MessagePumpForUI::MessagePumpForUI()
105 MessagePumpForUI::~MessagePumpForUI() {
111 void MessagePumpForUI::ScheduleWork() {
134 void MessagePumpForUI::ScheduleDelayedWork(const TimeTicks& delayed_work_time) {
175 void MessagePumpForUI::PumpOutPendingPaintMessages() {
200 // MessagePumpForUI private:
203 LRESULT CALLBACK MessagePumpForUI::WndProcThunk(
207 reinterpret_cast<MessagePumpForUI*>(wparam)->HandleWorkMessage();
210 reinterpret_cast<MessagePumpForUI*>(wparam)->HandleTimerMessage();
216 void MessagePumpForUI::DoRunLoop() {
272 void MessagePumpForUI::InitMessageWnd() {
290 void MessagePumpForUI::WaitForWork() {
325 void MessagePumpForUI::HandleWorkMessage() {
346 void MessagePumpForUI::HandleTimerMessage() {
362 bool MessagePumpForUI::ProcessNextWindowsMessage() {
379 bool MessagePumpForUI::ProcessMessageHelper(const MSG& msg) {
380 TRACE_EVENT1("base", "MessagePumpForUI::ProcessMessageHelper",
413 bool MessagePumpForUI::ProcessPumpReplacementMessage() {
456 void MessagePumpForUI::SetMessageFilter(
480 // See comment in MessagePumpForUI::ScheduleWork() for this error recovery.