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

Side by Side Diff: Source/web/WebMediaPlayerClientImpl.cpp

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "config.h" 5 #include "config.h"
6 #include "WebMediaPlayerClientImpl.h" 6 #include "WebMediaPlayerClientImpl.h"
7 7
8 #include "InbandTextTrackPrivateImpl.h" 8 #include "InbandTextTrackPrivateImpl.h"
9 #include "MediaSourcePrivateImpl.h" 9 #include "MediaSourcePrivateImpl.h"
10 #include "WebDocument.h" 10 #include "WebDocument.h"
(...skipping 17 matching lines...) Expand all
28 #include "core/rendering/RenderView.h" 28 #include "core/rendering/RenderView.h"
29 #include "modules/mediastream/MediaStreamRegistry.h" 29 #include "modules/mediastream/MediaStreamRegistry.h"
30 #include "platform/geometry/IntSize.h" 30 #include "platform/geometry/IntSize.h"
31 #include "public/platform/WebAudioSourceProvider.h" 31 #include "public/platform/WebAudioSourceProvider.h"
32 #include "public/platform/WebCanvas.h" 32 #include "public/platform/WebCanvas.h"
33 #include "public/platform/WebCompositorSupport.h" 33 #include "public/platform/WebCompositorSupport.h"
34 #include "public/platform/WebCString.h" 34 #include "public/platform/WebCString.h"
35 #include "public/platform/WebRect.h" 35 #include "public/platform/WebRect.h"
36 #include "public/platform/WebString.h" 36 #include "public/platform/WebString.h"
37 #include "public/platform/WebURL.h" 37 #include "public/platform/WebURL.h"
38 #include "weborigin/KURL.h" 38 #include "platform/weborigin/KURL.h"
39 39
40 #if OS(ANDROID) 40 #if OS(ANDROID)
41 #include "GrContext.h" 41 #include "GrContext.h"
42 #include "GrTypes.h" 42 #include "GrTypes.h"
43 #include "SkCanvas.h" 43 #include "SkCanvas.h"
44 #include "SkGrPixelRef.h" 44 #include "SkGrPixelRef.h"
45 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" 45 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h"
46 #endif 46 #endif
47 47
48 48
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 754
755 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel s, float sampleRate) 755 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel s, float sampleRate)
756 { 756 {
757 if (m_client) 757 if (m_client)
758 m_client->setFormat(numberOfChannels, sampleRate); 758 m_client->setFormat(numberOfChannels, sampleRate);
759 } 759 }
760 760
761 #endif 761 #endif
762 762
763 } // namespace WebKit 763 } // namespace WebKit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698