OLD | NEW |
---|---|
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 #ifndef MEDIA_BLINK_BUFFERED_DATA_SOURCE_H_ | 5 #ifndef MEDIA_BLINK_BUFFERED_DATA_SOURCE_H_ |
6 #define MEDIA_BLINK_BUFFERED_DATA_SOURCE_H_ | 6 #define MEDIA_BLINK_BUFFERED_DATA_SOURCE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... | |
35 // pull-based. http://crbug.com/131444 | 35 // pull-based. http://crbug.com/131444 |
36 virtual void AddBufferedByteRange(int64 start, int64 end) = 0; | 36 virtual void AddBufferedByteRange(int64 start, int64 end) = 0; |
37 | 37 |
38 protected: | 38 protected: |
39 virtual ~BufferedDataSourceHost() {} | 39 virtual ~BufferedDataSourceHost() {} |
40 }; | 40 }; |
41 | 41 |
42 // A data source capable of loading URLs and buffering the data using an | 42 // A data source capable of loading URLs and buffering the data using an |
43 // in-memory sliding window. | 43 // in-memory sliding window. |
44 // | 44 // |
45 // BufferedDataSource must be created and initialized on the render thread | 45 // BufferedDataSource must be created and destroyed on the main thread. |
Wez
2014/11/19 21:45:13
"main thread" doesn't have any meaning here, does
no sievers
2014/11/19 21:52:29
buffered_data_source_unittest.cc passes in another
| |
46 // before being passed to other threads. It may be deleted on any thread. | |
47 class MEDIA_EXPORT BufferedDataSource : public DataSource { | 46 class MEDIA_EXPORT BufferedDataSource : public DataSource { |
48 public: | 47 public: |
49 // Used to specify video preload states. They are "hints" to the browser about | 48 // Used to specify video preload states. They are "hints" to the browser about |
50 // how aggressively the browser should load and buffer data. | 49 // how aggressively the browser should load and buffer data. |
51 // Please see the HTML5 spec for the descriptions of these values: | 50 // Please see the HTML5 spec for the descriptions of these values: |
52 // http://www.w3.org/TR/html5/video.html#attr-media-preload | 51 // http://www.w3.org/TR/html5/video.html#attr-media-preload |
53 // | 52 // |
54 // Enum values must match the values in blink::WebMediaPlayer::Preload and | 53 // Enum values must match the values in blink::WebMediaPlayer::Preload and |
55 // there will be assertions at compile time if they do not match. | 54 // there will be assertions at compile time if they do not match. |
56 enum Preload { | 55 enum Preload { |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 | 233 |
235 // NOTE: Weak pointers must be invalidated before all other member variables. | 234 // NOTE: Weak pointers must be invalidated before all other member variables. |
236 base::WeakPtrFactory<BufferedDataSource> weak_factory_; | 235 base::WeakPtrFactory<BufferedDataSource> weak_factory_; |
237 | 236 |
238 DISALLOW_COPY_AND_ASSIGN(BufferedDataSource); | 237 DISALLOW_COPY_AND_ASSIGN(BufferedDataSource); |
239 }; | 238 }; |
240 | 239 |
241 } // namespace media | 240 } // namespace media |
242 | 241 |
243 #endif // MEDIA_BLINK_BUFFERED_DATA_SOURCE_H_ | 242 #endif // MEDIA_BLINK_BUFFERED_DATA_SOURCE_H_ |
OLD | NEW |