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

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

Issue 15462003: Update references to Blink's Platform API headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/webaudiosourceprovider_impl.h ('k') | webkit/media/webmediaplayer_impl.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 // Delegate calls from WebCore::MediaPlayerPrivate to Chrome's video player. 5 // Delegate calls from WebCore::MediaPlayerPrivate to Chrome's video player.
6 // It contains Pipeline which is the actual media player pipeline, it glues 6 // It contains Pipeline which is the actual media player pipeline, it glues
7 // the media player pipeline, data source, audio renderer and renderer. 7 // the media player pipeline, data source, audio renderer and renderer.
8 // Pipeline would creates multiple threads and access some public methods 8 // Pipeline would creates multiple threads and access some public methods
9 // of this class, so we need to be extra careful about concurrent access of 9 // of this class, so we need to be extra careful about concurrent access of
10 // methods and members. 10 // methods and members.
(...skipping 16 matching lines...) Expand all
27 #include "base/memory/weak_ptr.h" 27 #include "base/memory/weak_ptr.h"
28 #include "base/threading/thread.h" 28 #include "base/threading/thread.h"
29 #include "cc/layers/video_frame_provider.h" 29 #include "cc/layers/video_frame_provider.h"
30 #include "googleurl/src/gurl.h" 30 #include "googleurl/src/gurl.h"
31 #include "media/base/audio_renderer_sink.h" 31 #include "media/base/audio_renderer_sink.h"
32 #include "media/base/decryptor.h" 32 #include "media/base/decryptor.h"
33 #include "media/base/pipeline.h" 33 #include "media/base/pipeline.h"
34 #include "media/filters/gpu_video_decoder.h" 34 #include "media/filters/gpu_video_decoder.h"
35 #include "media/filters/skcanvas_video_renderer.h" 35 #include "media/filters/skcanvas_video_renderer.h"
36 #include "skia/ext/platform_canvas.h" 36 #include "skia/ext/platform_canvas.h"
37 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h" 37 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h"
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAudioSourceProvide r.h" 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAudioSourceProvide r.h"
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayer.h" 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayer.h"
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerClient. h" 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerClient. h"
41 #include "webkit/media/crypto/key_systems.h" 41 #include "webkit/media/crypto/key_systems.h"
42 #include "webkit/media/crypto/proxy_decryptor.h" 42 #include "webkit/media/crypto/proxy_decryptor.h"
43 43
44 class RenderAudioSourceProvider; 44 class RenderAudioSourceProvider;
45 45
46 namespace WebKit { 46 namespace WebKit {
47 class WebFrame; 47 class WebFrame;
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 // A pointer back to the compositor to inform it about state changes. This is 369 // A pointer back to the compositor to inform it about state changes. This is
370 // not NULL while the compositor is actively using this webmediaplayer. 370 // not NULL while the compositor is actively using this webmediaplayer.
371 cc::VideoFrameProvider::Client* video_frame_provider_client_; 371 cc::VideoFrameProvider::Client* video_frame_provider_client_;
372 372
373 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); 373 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl);
374 }; 374 };
375 375
376 } // namespace webkit_media 376 } // namespace webkit_media
377 377
378 #endif // WEBKIT_MEDIA_WEBMEDIAPLAYER_IMPL_H_ 378 #endif // WEBKIT_MEDIA_WEBMEDIAPLAYER_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/media/webaudiosourceprovider_impl.h ('k') | webkit/media/webmediaplayer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698