Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Side by Side Diff: Source/platform/heap/HeapTerminatedArray.h

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef HeapTerminatedArray_h 5 #ifndef HeapTerminatedArray_h
6 #define HeapTerminatedArray_h 6 #define HeapTerminatedArray_h
7 7
8 #include "platform/heap/Heap.h" 8 #include "platform/heap/Heap.h"
9 #include "wtf/TerminatedArray.h" 9 #include "wtf/TerminatedArray.h"
10 #include "wtf/TerminatedArrayBuilder.h" 10 #include "wtf/TerminatedArrayBuilder.h"
11 11
12 namespace WebCore { 12 namespace blink {
13 13
14 template<typename T> 14 template<typename T>
15 class HeapTerminatedArray : public TerminatedArray<T> { 15 class HeapTerminatedArray : public TerminatedArray<T> {
16 DISALLOW_ALLOCATION(); 16 DISALLOW_ALLOCATION();
17 public: 17 public:
18 using TerminatedArray<T>::begin; 18 using TerminatedArray<T>::begin;
19 using TerminatedArray<T>::end; 19 using TerminatedArray<T>::end;
20 20
21 void trace(Visitor* visitor) 21 void trace(Visitor* visitor)
22 { 22 {
(...skipping 19 matching lines...) Expand all
42 } 42 }
43 }; 43 };
44 44
45 // Prohibit construction. Allocator makes HeapTerminatedArray instances for 45 // Prohibit construction. Allocator makes HeapTerminatedArray instances for
46 // HeapTerminatedArrayBuilder by pointer casting. 46 // HeapTerminatedArrayBuilder by pointer casting.
47 HeapTerminatedArray(); 47 HeapTerminatedArray();
48 48
49 template<typename U, template <typename> class> friend class WTF::Terminated ArrayBuilder; 49 template<typename U, template <typename> class> friend class WTF::Terminated ArrayBuilder;
50 }; 50 };
51 51
52 } // namespace WebCore 52 } // namespace blink
53 53
54 #endif // HeapTerminatedArray_h 54 #endif // HeapTerminatedArray_h
OLDNEW
« no previous file with comments | « Source/platform/heap/HeapLinkedStack.h ('k') | Source/platform/heap/HeapTerminatedArrayBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698