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

Side by Side Diff: src/gpu/GrAllocPool.h

Issue 226183018: SkNonCopyable should be used with private inheritance. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: name resolution Created 6 years, 8 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
« no previous file with comments | « src/core/SkTLList.h ('k') | src/gpu/GrAllocator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010 Google Inc. 2 * Copyright 2010 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrAllocPool_DEFINED 8 #ifndef GrAllocPool_DEFINED
9 #define GrAllocPool_DEFINED 9 #define GrAllocPool_DEFINED
10 10
11 #include "SkTypes.h" 11 #include "SkTypes.h"
12 12
13 class GrAllocPool : public SkNoncopyable { 13 class GrAllocPool : SkNoncopyable {
14 public: 14 public:
15 GrAllocPool(size_t blockSize = 0); 15 GrAllocPool(size_t blockSize = 0);
16 ~GrAllocPool(); 16 ~GrAllocPool();
17 17
18 /** 18 /**
19 * Frees all blocks that have been allocated with alloc(). 19 * Frees all blocks that have been allocated with alloc().
20 */ 20 */
21 void reset(); 21 void reset();
22 22
23 /** 23 /**
(...skipping 27 matching lines...) Expand all
51 GrTAllocPool(int count) : fPool(count * sizeof(T)) {} 51 GrTAllocPool(int count) : fPool(count * sizeof(T)) {}
52 52
53 void reset() { fPool.reset(); } 53 void reset() { fPool.reset(); }
54 T* alloc() { return (T*)fPool.alloc(sizeof(T)); } 54 T* alloc() { return (T*)fPool.alloc(sizeof(T)); }
55 55
56 private: 56 private:
57 GrAllocPool fPool; 57 GrAllocPool fPool;
58 }; 58 };
59 59
60 #endif 60 #endif
OLDNEW
« no previous file with comments | « src/core/SkTLList.h ('k') | src/gpu/GrAllocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698