| Index: cc/base/list_container.cc
|
| diff --git a/cc/quads/list_container.cc b/cc/base/list_container.cc
|
| similarity index 98%
|
| rename from cc/quads/list_container.cc
|
| rename to cc/base/list_container.cc
|
| index 4edcbdfab560a86af305e7946f53852ede0a43ef..1deb1b0232ef48ec798949bb0feb5b878e4d52da 100644
|
| --- a/cc/quads/list_container.cc
|
| +++ b/cc/base/list_container.cc
|
| @@ -2,15 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "cc/quads/list_container.h"
|
| +#include "cc/base/list_container.h"
|
|
|
| #include <algorithm>
|
| #include <vector>
|
|
|
| #include "cc/base/scoped_ptr_vector.h"
|
| -#include "cc/playback/display_item.h"
|
| -#include "cc/quads/draw_quad.h"
|
| -#include "cc/quads/shared_quad_state.h"
|
|
|
| namespace {
|
| const size_t kDefaultNumElementTypesToReserve = 32;
|
| @@ -713,8 +710,4 @@ size_t ListContainer<BaseElementType>::ConstReverseIterator::index() const {
|
| return index_;
|
| }
|
|
|
| -template class ListContainer<SharedQuadState>;
|
| -template class ListContainer<DrawQuad>;
|
| -template class ListContainer<DisplayItem>;
|
| -
|
| } // namespace cc
|
|
|