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

Unified Diff: media/base/mock_filters.h

Issue 9854031: Replace size_t with int in a few media classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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 | « media/base/data_source.cc ('k') | media/base/seekable_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mock_filters.h
diff --git a/media/base/mock_filters.h b/media/base/mock_filters.h
index 152619d48665f4fe2ea3157d6450b78ea9c81b8c..4c18796259a9b1410bddb8ce0afc0760a3c478d9 100644
--- a/media/base/mock_filters.h
+++ b/media/base/mock_filters.h
@@ -81,7 +81,7 @@ class MockDataSource : public DataSource {
MOCK_METHOD0(OnAudioRendererDisabled, void());
// DataSource implementation.
- MOCK_METHOD4(Read, void(int64 position, size_t size, uint8* data,
+ MOCK_METHOD4(Read, void(int64 position, int size, uint8* data,
const DataSource::ReadCB& callback));
MOCK_METHOD1(GetSize, bool(int64* size_out));
MOCK_METHOD1(SetPreload, void(Preload preload));
« no previous file with comments | « media/base/data_source.cc ('k') | media/base/seekable_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698