| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |