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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

Issue 2007433002: Revert of MediaCaptureFromElement: add support for audio captureStream(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override; 170 blink::WebMediaRecorderHandler* createMediaRecorderHandler() override;
171 blink::WebMediaStreamCenter* createMediaStreamCenter( 171 blink::WebMediaStreamCenter* createMediaStreamCenter(
172 blink::WebMediaStreamCenterClient* client) override; 172 blink::WebMediaStreamCenterClient* client) override;
173 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler( 173 blink::WebCanvasCaptureHandler* createCanvasCaptureHandler(
174 const blink::WebSize& size, 174 const blink::WebSize& size,
175 double frame_rate, 175 double frame_rate,
176 blink::WebMediaStreamTrack* track) override; 176 blink::WebMediaStreamTrack* track) override;
177 void createHTMLVideoElementCapturer( 177 void createHTMLVideoElementCapturer(
178 blink::WebMediaStream* web_media_stream, 178 blink::WebMediaStream* web_media_stream,
179 blink::WebMediaPlayer* web_media_player) override; 179 blink::WebMediaPlayer* web_media_player) override;
180 void createHTMLAudioElementCapturer(
181 blink::WebMediaStream* web_media_stream,
182 blink::WebMediaPlayer* web_media_player) override;
183 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; 180 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override;
184 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( 181 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider(
185 const blink::Platform::ContextAttributes& attributes, 182 const blink::Platform::ContextAttributes& attributes,
186 const blink::WebURL& top_document_web_url, 183 const blink::WebURL& top_document_web_url,
187 blink::WebGraphicsContext3DProvider* share_provider, 184 blink::WebGraphicsContext3DProvider* share_provider,
188 blink::Platform::GraphicsInfo* gl_info, 185 blink::Platform::GraphicsInfo* gl_info,
189 blink::Platform::WillBindToCurrentThread) override; 186 blink::Platform::WillBindToCurrentThread) override;
190 blink::WebGraphicsContext3DProvider* 187 blink::WebGraphicsContext3DProvider*
191 createSharedOffscreenGraphicsContext3DProvider() override; 188 createSharedOffscreenGraphicsContext3DProvider() override;
192 blink::WebCompositorSupport* compositorSupport() override; 189 blink::WebCompositorSupport* compositorSupport() override;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 306 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
310 307
311 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; 308 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_;
312 309
313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 310 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
314 }; 311 };
315 312
316 } // namespace content 313 } // namespace content
317 314
318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 315 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698