Line data Source code
1 : /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 : * This Source Code Form is subject to the terms of the Mozilla Public
3 : * License, v. 2.0. If a copy of the MPL was not distributed with this
4 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 :
6 : #include "RenderTextureHost.h"
7 : #include "RenderThread.h"
8 :
9 : namespace mozilla {
10 : namespace wr {
11 :
12 0 : RenderTextureHost::RenderTextureHost()
13 : {
14 0 : MOZ_COUNT_CTOR(RenderTextureHost);
15 0 : }
16 :
17 0 : RenderTextureHost::~RenderTextureHost()
18 : {
19 0 : MOZ_ASSERT(RenderThread::IsInRenderThread());
20 0 : MOZ_COUNT_DTOR(RenderTextureHost);
21 0 : }
22 :
23 : } // namespace wr
24 : } // namespace mozilla
|