Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/gfx/2d/CaptureCommandList.cpp
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
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/. */
6
7
#include "CaptureCommandList.h"
8
#include "DrawCommand.h"
9
10
namespace mozilla {
11
namespace gfx {
12
13
CaptureCommandList::~CaptureCommandList()
14
0
{
15
0
  Clear();
16
0
}
17
18
void
19
CaptureCommandList::Clear()
20
0
{
21
0
  for (iterator iter(*this); !iter.Done(); iter.Next()) {
22
0
    DrawingCommand* cmd = iter.Get();
23
0
    cmd->~DrawingCommand();
24
0
  }
25
0
  mLastCommand = nullptr;
26
0
  mStorage.clear();
27
0
}
28
29
} // namespace gfx
30
} // namespace mozilla