Bug 1839170 - Refactor Snap pulling, Add Firefox Snap Core22 and GNOME 42 SDK symbols...
[gecko.git] / dom / media / webaudio / ReportDecodeResultTask.h
blob49b7e39e04b25c5cdcc56ddc9dedf610035ab73c
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 #ifndef ReportDecodeResultTask_h_
8 #define ReportDecodeResultTask_h_
10 #include "mozilla/Attributes.h"
11 #include "MediaBufferDecoder.h"
13 namespace mozilla {
15 class ReportDecodeResultTask final : public Runnable {
16 public:
17 ReportDecodeResultTask(DecodeJob& aDecodeJob, DecodeJob::ResultFn aFunction)
18 : mDecodeJob(aDecodeJob), mFunction(aFunction) {
19 MOZ_ASSERT(aFunction);
22 NS_IMETHOD Run() override {
23 MOZ_ASSERT(NS_IsMainThread());
25 (mDecodeJob.*mFunction)();
27 return NS_OK;
30 private:
31 DecodeJob& mDecodeJob;
32 DecodeJob::ResultFn mFunction;
35 } // namespace mozilla
37 #endif