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

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

Issue 1844843002: android: Remove in-process video path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove commented out code + rebase again Created 4 years, 8 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_RENDER_THREAD_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 291
292 #if defined(OS_ANDROID) 292 #if defined(OS_ANDROID)
293 RendererDemuxerAndroid* renderer_demuxer() { 293 RendererDemuxerAndroid* renderer_demuxer() {
294 return renderer_demuxer_.get(); 294 return renderer_demuxer_.get();
295 } 295 }
296 296
297 SynchronousCompositorFilter* sync_compositor_message_filter() { 297 SynchronousCompositorFilter* sync_compositor_message_filter() {
298 return sync_compositor_message_filter_.get(); 298 return sync_compositor_message_filter_.get();
299 } 299 }
300 300
301 static void SetStreamTextureFactory(
302 scoped_refptr<StreamTextureFactory> factory);
303
304 scoped_refptr<StreamTextureFactory> GetStreamTexureFactory(); 301 scoped_refptr<StreamTextureFactory> GetStreamTexureFactory();
305 bool EnableStreamTextureCopy(); 302 bool EnableStreamTextureCopy();
306 #endif 303 #endif
307 304
308 // Creates the embedder implementation of WebMediaStreamCenter. 305 // Creates the embedder implementation of WebMediaStreamCenter.
309 // The resulting object is owned by WebKit and deleted by WebKit at tear-down. 306 // The resulting object is owned by WebKit and deleted by WebKit at tear-down.
310 blink::WebMediaStreamCenter* CreateMediaStreamCenter( 307 blink::WebMediaStreamCenter* CreateMediaStreamCenter(
311 blink::WebMediaStreamCenterClient* client); 308 blink::WebMediaStreamCenterClient* client);
312 309
313 BrowserPluginManager* browser_plugin_manager() const { 310 BrowserPluginManager* browser_plugin_manager() const {
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 713 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
717 }; 714 };
718 715
719 #if defined(COMPILER_MSVC) 716 #if defined(COMPILER_MSVC)
720 #pragma warning(pop) 717 #pragma warning(pop)
721 #endif 718 #endif
722 719
723 } // namespace content 720 } // namespace content
724 721
725 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 722 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/android/webmediaplayer_android.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698