Bug 1795723 - Unified extensions UI should support High Contrast Mode. r=ayeddi,deskt...
[gecko.git] / dom / midi / MIDIManagerParent.cpp
blobd170d5733b25f1d6e31029f9d676993cbc375a3b
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
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 "mozilla/dom/MIDIManagerParent.h"
8 #include "mozilla/dom/MIDIPlatformService.h"
10 namespace mozilla::dom {
12 void MIDIManagerParent::ActorDestroy(ActorDestroyReason aWhy) {}
14 void MIDIManagerParent::Teardown() {
15 if (MIDIPlatformService::IsRunning()) {
16 MIDIPlatformService::Get()->RemoveManager(this);
20 mozilla::ipc::IPCResult MIDIManagerParent::RecvRefresh() {
21 MIDIPlatformService::Get()->Refresh();
22 return IPC_OK();
25 mozilla::ipc::IPCResult MIDIManagerParent::RecvShutdown() {
26 Teardown();
27 Unused << Send__delete__(this);
28 return IPC_OK();
31 } // namespace mozilla::dom