Chromium Code Reviews| Index: content/renderer/media/buffered_data_source.cc |
| diff --git a/content/renderer/media/buffered_data_source.cc b/content/renderer/media/buffered_data_source.cc |
| index c897499b89ce620da9cdb7755a80bf205c5e9036..1ea9e5bb672083e06792fffe71f1ed2995533ae6 100644 |
| --- a/content/renderer/media/buffered_data_source.cc |
| +++ b/content/renderer/media/buffered_data_source.cc |
| @@ -7,6 +7,7 @@ |
| #include "base/bind.h" |
| #include "base/callback_helpers.h" |
| #include "base/message_loop/message_loop_proxy.h" |
| +#include "content/public/common/url_constants.h" |
|
scherkus (not reviewing)
2014/04/03 21:59:37
is this because you removed the kHttpScheme consta
sandersd (OOO until July 31)
2014/04/04 23:48:41
Yes, but I removed them because of a link error.
|
| #include "media/base/media_log.h" |
| #include "net/base/net_errors.h" |
| @@ -27,6 +28,8 @@ const int kNumCacheMissRetries = 3; |
| namespace content { |
| +BufferedDataSourceHost::~BufferedDataSourceHost() {} |
| + |
| class BufferedDataSource::ReadOperation { |
| public: |
| ReadOperation(int64 position, int size, uint8* data, |
| @@ -81,7 +84,7 @@ BufferedDataSource::BufferedDataSource( |
| const scoped_refptr<base::MessageLoopProxy>& render_loop, |
| WebFrame* frame, |
| media::MediaLog* media_log, |
| - media::DataSourceHost* host, |
| + BufferedDataSourceHost* host, |
| const DownloadingCB& downloading_cb) |
| : cors_mode_(BufferedResourceLoader::kUnspecified), |
| total_bytes_(kPositionNotSpecified), |