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

Side by Side Diff: webkit/media/buffered_resource_loader.h

Issue 11887029: Update some #includes in webkit/media for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « webkit/media/buffered_data_source_unittest.cc ('k') | webkit/media/buffered_resource_loader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "third_party/WebKit/Source/Platform/chromium/public/WebURLLoader.h"
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoaderClient. h"
17 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader .h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader Client.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h"
19 #include "webkit/media/active_loader.h" 19 #include "webkit/media/active_loader.h"
20 20
21 namespace media { 21 namespace media {
22 class MediaLog; 22 class MediaLog;
23 class SeekableBuffer; 23 class SeekableBuffer;
24 } 24 }
25 25
26 namespace webkit_media { 26 namespace webkit_media {
27 27
28 const int64 kPositionNotSpecified = -1; 28 const int64 kPositionNotSpecified = -1;
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 float playback_rate_; 322 float playback_rate_;
323 323
324 scoped_refptr<media::MediaLog> media_log_; 324 scoped_refptr<media::MediaLog> media_log_;
325 325
326 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader); 326 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader);
327 }; 327 };
328 328
329 } // namespace webkit_media 329 } // namespace webkit_media
330 330
331 #endif // WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_ 331 #endif // WEBKIT_MEDIA_BUFFERED_RESOURCE_LOADER_H_
OLDNEW
« no previous file with comments | « webkit/media/buffered_data_source_unittest.cc ('k') | webkit/media/buffered_resource_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698