MessagePump_android.cpp (921B)
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/. */ 6 7 #include "MessagePump.h" 8 9 namespace mozilla::ipc { 10 void MessagePumpForAndroidUI::Run(Delegate* delegate) { 11 MOZ_CRASH("MessagePumpForAndroidUI should never be Run."); 12 } 13 14 void MessagePumpForAndroidUI::Quit() { 15 MOZ_CRASH("MessagePumpForAndroidUI should never be Quit."); 16 } 17 18 void MessagePumpForAndroidUI::ScheduleWork() { 19 MOZ_CRASH("MessagePumpForAndroidUI should never ScheduleWork"); 20 } 21 22 void MessagePumpForAndroidUI::ScheduleDelayedWork( 23 const base::TimeTicks& delayed_work_time) { 24 MOZ_CRASH("MessagePumpForAndroidUI should never ScheduleDelayedWork"); 25 } 26 } // namespace mozilla::ipc