Bug 1874684 - Part 31: Correctly reject invalid durations in some RoundDuration calls...
[gecko.git] / ipc / glue / MessagePump_android.cpp
blobf237d4d7ed80e23f0f64b1f17a1d4a00a13a035c
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "MessagePump.h"
9 namespace mozilla::ipc {
10 void MessagePumpForAndroidUI::Run(Delegate* delegate) {
11 MOZ_CRASH("MessagePumpForAndroidUI should never be Run.");
14 void MessagePumpForAndroidUI::Quit() {
15 MOZ_CRASH("MessagePumpForAndroidUI should never be Quit.");
18 void MessagePumpForAndroidUI::ScheduleWork() {
19 MOZ_CRASH("MessagePumpForAndroidUI should never ScheduleWork");
22 void MessagePumpForAndroidUI::ScheduleDelayedWork(
23 const base::TimeTicks& delayed_work_time) {
24 MOZ_CRASH("MessagePumpForAndroidUI should never ScheduleDelayedWork");
26 } // namespace mozilla::ipc