OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/platform/WebURLLoader
.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
Client.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
Client.h" |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques
t.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" | |
22 #include "webkit/media/webmediaplayer_impl.h" | |
23 | 21 |
24 namespace media { | 22 namespace media { |
25 class MediaLog; | 23 class MediaLog; |
26 } | 24 } |
27 | 25 |
28 namespace webkit_media { | 26 namespace webkit_media { |
29 | 27 |
30 const int64 kPositionNotSpecified = -1; | 28 const int64 kPositionNotSpecified = -1; |
31 | 29 |
32 const char kHttpScheme[] = "http"; | 30 const char kHttpScheme[] = "http"; |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 float playback_rate_; | 297 float playback_rate_; |
300 | 298 |
301 scoped_refptr<media::MediaLog> media_log_; | 299 scoped_refptr<media::MediaLog> media_log_; |
302 | 300 |
303 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader); | 301 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader); |
304 }; | 302 }; |
305 | 303 |
306 } // namespace webkit_media | 304 } // namespace webkit_media |
307 | 305 |
308 #endif // WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ | 306 #endif // WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
OLD | NEW |