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

Unified Diff: media/audio/shared_memory_util.h

Issue 10873071: Rename shared memory methods for consistency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « no previous file | media/audio/shared_memory_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/shared_memory_util.h
diff --git a/media/audio/shared_memory_util.h b/media/audio/shared_memory_util.h
index d0227d9e3e9d5b388bcf3dd6334676a6ace511b4..2ae6ffed6103fab9c9c1c2fe748deaead2733dbe 100644
--- a/media/audio/shared_memory_util.h
+++ b/media/audio/shared_memory_util.h
@@ -22,17 +22,17 @@ enum { kPauseMark = -1 };
MEDIA_EXPORT uint32 TotalSharedMemorySizeInBytes(uint32 packet_size);
MEDIA_EXPORT uint32 PacketSizeInBytes(uint32 shared_memory_created_size);
MEDIA_EXPORT uint32 GetActualDataSizeInBytes(base::SharedMemory* shared_memory,
- uint32 shared_memory_size);
+ uint32 packet_size);
MEDIA_EXPORT void SetActualDataSizeInBytes(base::SharedMemory* shared_memory,
- uint32 shared_memory_size,
+ uint32 packet_size,
uint32 actual_data_size);
MEDIA_EXPORT void SetActualDataSizeInBytes(void* shared_memory_ptr,
- uint32 shared_memory_size,
+ uint32 packet_size,
uint32 actual_data_size);
MEDIA_EXPORT void SetUnknownDataSize(base::SharedMemory* shared_memory,
- uint32 shared_memory_size);
+ uint32 packet_size);
MEDIA_EXPORT bool IsUnknownDataSize(base::SharedMemory* shared_memory,
- uint32 shared_memory_size);
+ uint32 packet_size);
} // namespace media
« no previous file with comments | « no previous file | media/audio/shared_memory_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698