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

Unified Diff: gpu/command_buffer/client/gles2_implementation_unittest.cc

Issue 2535213002: [WIP] Add SharedMemoryTracker to dump base::SharedMemory usage
Patch Set: (rebase) Created 3 years, 7 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
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation.cc ('k') | gpu/command_buffer/client/mapped_memory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_implementation_unittest.cc
diff --git a/gpu/command_buffer/client/gles2_implementation_unittest.cc b/gpu/command_buffer/client/gles2_implementation_unittest.cc
index fdfcd501bbbe5a3460197db37f63be6872b1a714..a5de48e60ddbffe522db80f4be31bdb7a207c860 100644
--- a/gpu/command_buffer/client/gles2_implementation_unittest.cc
+++ b/gpu/command_buffer/client/gles2_implementation_unittest.cc
@@ -149,6 +149,7 @@ class MockTransferBuffer : public TransferBufferInterface {
void FreePendingToken(void* p, unsigned int /* token */) override;
unsigned int GetSize() const override;
unsigned int GetFreeSize() const override;
+ base::SharedMemory* GetSharedMemory() const override;
size_t MaxTransferBufferSize() {
return size_ - result_size_;
@@ -329,6 +330,10 @@ unsigned int MockTransferBuffer::GetFreeSize() const {
return 0;
}
+base::SharedMemory* MockTransferBuffer::GetSharedMemory() const {
+ return nullptr;
+}
+
// API wrapper for Buffers.
class GenBuffersAPI {
public:
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation.cc ('k') | gpu/command_buffer/client/mapped_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698