blob: a2a6ec92476a9f20d42423336a3651f50de90cc5 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chaps/object_pool_mock.h"
#include "chaps/object.h"
namespace chaps {
ObjectPoolMock::ObjectPoolMock() {}
ObjectPoolMock::~ObjectPoolMock() {
for (size_t i = 0; i < v_.size(); ++i) {
delete v_[i];
}
}
}