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

Side by Side Diff: webkit/renderer/media/buffered_data_source.cc

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/renderer/media/buffered_data_source.h" 5 #include "webkit/renderer/media/buffered_data_source.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/callback_helpers.h" 8 #include "base/callback_helpers.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "media/base/media_log.h" 10 #include "media/base/media_log.h"
11 #include "net/base/net_errors.h" 11 #include "net/base/net_errors.h"
12 12
13 using WebKit::WebFrame; 13 using WebKit::WebFrame;
14 14
15 namespace { 15 namespace {
16 16
17 // BufferedDataSource has an intermediate buffer, this value governs the initial 17 // BufferedDataSource has an intermediate buffer, this value governs the initial
18 // size of that buffer. It is set to 32KB because this is a typical read size 18 // size of that buffer. It is set to 32KB because this is a typical read size
19 // of FFmpeg. 19 // of FFmpeg.
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 if (total_bytes_ == kPositionNotSpecified) 529 if (total_bytes_ == kPositionNotSpecified)
530 return; 530 return;
531 531
532 host()->SetTotalBytes(total_bytes_); 532 host()->SetTotalBytes(total_bytes_);
533 533
534 if (assume_fully_buffered_) 534 if (assume_fully_buffered_)
535 host()->AddBufferedByteRange(0, total_bytes_); 535 host()->AddBufferedByteRange(0, total_bytes_);
536 } 536 }
537 537
538 } // namespace webkit_media 538 } // namespace webkit_media
OLDNEW
« no previous file with comments | « webkit/renderer/media/android/media_source_delegate.cc ('k') | webkit/renderer/media/crypto/ppapi_decryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698