| Index: media/tools/player_x11/data_source_logger.cc
|
| diff --git a/media/tools/player_x11/data_source_logger.cc b/media/tools/player_x11/data_source_logger.cc
|
| index 828c4bcce399ab29d60235c076ffb5b2a7e3fca5..ee3404ffef32e38815744ce9c57f85a1ce657801 100644
|
| --- a/media/tools/player_x11/data_source_logger.cc
|
| +++ b/media/tools/player_x11/data_source_logger.cc
|
| @@ -12,8 +12,8 @@ static void LogAndRunStopClosure(const base::Closure& closure) {
|
| }
|
|
|
| static void LogAndRunReadCB(
|
| - int64 position, size_t size,
|
| - const media::DataSource::ReadCB& read_cb, size_t result) {
|
| + int64 position, int size,
|
| + const media::DataSource::ReadCB& read_cb, int result) {
|
| VLOG(1) << "Read(" << position << ", " << size << ") -> " << result;
|
| read_cb.Run(result);
|
| }
|
| @@ -38,7 +38,7 @@ void DataSourceLogger::Stop(const base::Closure& closure) {
|
| }
|
|
|
| void DataSourceLogger::Read(
|
| - int64 position, size_t size, uint8* data,
|
| + int64 position, int size, uint8* data,
|
| const media::DataSource::ReadCB& read_cb) {
|
| VLOG(1) << "Read(" << position << ", " << size << ")";
|
| data_source_->Read(position, size, data, base::Bind(
|
|
|