File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,7 @@ CompositorThreadHolder* CompositorThreadHolder::GetSingleton() {
34
34
}
35
35
36
36
CompositorThreadHolder::CompositorThreadHolder ()
37
- : mCompositorThread (CreateCompositorThread()),
38
- mCompositorAbstractThread (AbstractThread::CreateXPCOMThreadWrapper(
39
- mCompositorThread , false /* aRequireTailDispatch */ )) {
37
+ : mCompositorThread (CreateCompositorThread()) {
40
38
MOZ_ASSERT (NS_IsMainThread());
41
39
}
42
40
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ class nsISerialEventTarget;
13
13
class nsIThread ;
14
14
15
15
namespace mozilla {
16
- class AbstractThread ;
17
16
namespace layers {
18
17
19
18
class CompositorThreadHolder final {
@@ -48,8 +47,7 @@ class CompositorThreadHolder final {
48
47
private:
49
48
~CompositorThreadHolder ();
50
49
51
- const nsCOMPtr<nsIThread> mCompositorThread ;
52
- const RefPtr<AbstractThread> mCompositorAbstractThread ;
50
+ nsCOMPtr<nsIThread> mCompositorThread ;
53
51
54
52
static already_AddRefed<nsIThread> CreateCompositorThread ();
55
53
You can’t perform that action at this time.
0 commit comments