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

Unified Diff: gpu/command_buffer/client/fenced_allocator.h

Issue 1796010: Fix some memory leaks in GPU tests. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/fenced_allocator.h
diff --git a/gpu/command_buffer/client/fenced_allocator.h b/gpu/command_buffer/client/fenced_allocator.h
index 59919f35afa5f474375a92da0a053520f066e536..56eb974318f386bd773908b6c1ce5669a286cff6 100644
--- a/gpu/command_buffer/client/fenced_allocator.h
+++ b/gpu/command_buffer/client/fenced_allocator.h
@@ -139,8 +139,8 @@ class FencedAllocator {
class FencedAllocatorWrapper {
public:
FencedAllocatorWrapper(unsigned int size,
- CommandBufferHelper *helper,
- void *base)
+ CommandBufferHelper* helper,
+ void* base)
: allocator_(size, helper),
base_(base) { }
@@ -229,7 +229,7 @@ class FencedAllocatorWrapper {
private:
FencedAllocator allocator_;
- void *base_;
+ void* base_;
DISALLOW_IMPLICIT_CONSTRUCTORS(FencedAllocatorWrapper);
};
« no previous file with comments | « gpu/command_buffer/client/cmd_buffer_helper_test.cc ('k') | gpu/command_buffer/client/fenced_allocator_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698