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

Unified Diff: services/media/framework/payload_allocator.h

Issue 2081753002: Motown: Stop requiring size when releasing payload buffers. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 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 | « services/media/framework/packet.cc ('k') | services/media/framework/payload_allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/media/framework/payload_allocator.h
diff --git a/services/media/framework/payload_allocator.h b/services/media/framework/payload_allocator.h
index 8e398f3db7504e3803cc99c58e1a139c346c8f67..633cdaaf1f0c5b184ca372c1f46611f303cd02fe 100644
--- a/services/media/framework/payload_allocator.h
+++ b/services/media/framework/payload_allocator.h
@@ -21,7 +21,7 @@ class PayloadAllocator {
virtual void* AllocatePayloadBuffer(size_t size) = 0;
// Releases a buffer previously allocated via AllocatePayloadBuffer.
- virtual void ReleasePayloadBuffer(size_t size, void* buffer) = 0;
+ virtual void ReleasePayloadBuffer(void* buffer) = 0;
};
} // namespace media
« no previous file with comments | « services/media/framework/packet.cc ('k') | services/media/framework/payload_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698