OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ | 5 #ifndef WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
6 #define WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ | 6 #define WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/timer.h" | 12 #include "base/timer.h" |
13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
14 #include "media/base/seekable_buffer.h" | 14 #include "media/base/seekable_buffer.h" |
15 #include "net/base/file_stream.h" | 15 #include "net/base/file_stream.h" |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoader.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoaderClient.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
Client.h" |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques
t.h" |
20 #include "webkit/media/active_loader.h" | 20 #include "webkit/media/active_loader.h" |
21 #include "webkit/media/web_data_source.h" | 21 #include "webkit/media/web_data_source.h" |
22 #include "webkit/media/webmediaplayer_impl.h" | 22 #include "webkit/media/webmediaplayer_impl.h" |
23 | 23 |
24 namespace media { | 24 namespace media { |
25 class MediaLog; | 25 class MediaLog; |
26 } | 26 } |
27 | 27 |
28 namespace webkit_media { | 28 namespace webkit_media { |
29 | 29 |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 float playback_rate_; | 296 float playback_rate_; |
297 | 297 |
298 scoped_refptr<media::MediaLog> media_log_; | 298 scoped_refptr<media::MediaLog> media_log_; |
299 | 299 |
300 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader); | 300 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader); |
301 }; | 301 }; |
302 | 302 |
303 } // namespace webkit_media | 303 } // namespace webkit_media |
304 | 304 |
305 #endif // WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ | 305 #endif // WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
OLD | NEW |