Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / media / QueueObject.h
blobab8b3967ec6ed09fbabff3dc409778349baba9ee
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 MOZILLA_QUEUE_OBJECT_H
8 #define MOZILLA_QUEUE_OBJECT_H
10 #include "mozilla/RefPtr.h"
11 #include "nsIRunnable.h"
12 #include "nsThreadUtils.h"
14 namespace mozilla {
16 class AbstractThread;
18 class QueueObject {
19 public:
20 explicit QueueObject(RefPtr<AbstractThread> aThread);
21 ~QueueObject();
22 void Dispatch(nsIRunnable* aRunnable);
23 void Dispatch(already_AddRefed<nsIRunnable> aRunnable);
24 bool OnThread();
25 AbstractThread* Thread();
27 private:
28 RefPtr<AbstractThread> mThread;
30 } // namespace mozilla
32 #endif