| Index: sky/engine/platform/heap/HeapTerminatedArray.h
|
| diff --git a/sky/engine/platform/heap/HeapTerminatedArray.h b/sky/engine/platform/heap/HeapTerminatedArray.h
|
| deleted file mode 100644
|
| index de1cd4649b94b433fb7e3354e9d71446fd491950..0000000000000000000000000000000000000000
|
| --- a/sky/engine/platform/heap/HeapTerminatedArray.h
|
| +++ /dev/null
|
| @@ -1,54 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef HeapTerminatedArray_h
|
| -#define HeapTerminatedArray_h
|
| -
|
| -#include "platform/heap/Heap.h"
|
| -#include "wtf/TerminatedArray.h"
|
| -#include "wtf/TerminatedArrayBuilder.h"
|
| -
|
| -namespace blink {
|
| -
|
| -template<typename T>
|
| -class HeapTerminatedArray : public TerminatedArray<T> {
|
| - DISALLOW_ALLOCATION();
|
| -public:
|
| - using TerminatedArray<T>::begin;
|
| - using TerminatedArray<T>::end;
|
| -
|
| - void trace(Visitor* visitor)
|
| - {
|
| - for (typename TerminatedArray<T>::iterator it = begin(); it != end(); ++it)
|
| - visitor->trace(*it);
|
| - }
|
| -
|
| -private:
|
| - // Allocator describes how HeapTerminatedArrayBuilder should create new intances
|
| - // of TerminateArray and manage their lifetimes.
|
| - struct Allocator {
|
| - typedef HeapTerminatedArray* PassPtr;
|
| - typedef RawPtr<HeapTerminatedArray> Ptr;
|
| -
|
| - static PassPtr create(size_t capacity)
|
| - {
|
| - return reinterpret_cast<HeapTerminatedArray*>(Heap::allocate<HeapTerminatedArray>(capacity * sizeof(T)));
|
| - }
|
| -
|
| - static PassPtr resize(PassPtr ptr, size_t capacity)
|
| - {
|
| - return reinterpret_cast<HeapTerminatedArray*>(Heap::reallocate<HeapTerminatedArray>(ptr, capacity * sizeof(T)));
|
| - }
|
| - };
|
| -
|
| - // Prohibit construction. Allocator makes HeapTerminatedArray instances for
|
| - // HeapTerminatedArrayBuilder by pointer casting.
|
| - HeapTerminatedArray();
|
| -
|
| - template<typename U, template <typename> class> friend class WTF::TerminatedArrayBuilder;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // HeapTerminatedArray_h
|
|
|