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

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

Issue 1234813004: [BlobAsync] Asynchronous Blob Construction Final Patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blob-protocol-change
Patch Set: Added ChildProcess Ref Counting Created 4 years, 9 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 class Extension; 84 class Extension;
85 } 85 }
86 86
87 namespace content { 87 namespace content {
88 88
89 class AppCacheDispatcher; 89 class AppCacheDispatcher;
90 class AecDumpMessageFilter; 90 class AecDumpMessageFilter;
91 class AudioInputMessageFilter; 91 class AudioInputMessageFilter;
92 class AudioMessageFilter; 92 class AudioMessageFilter;
93 class AudioRendererMixerManager; 93 class AudioRendererMixerManager;
94 class BlobMessageFilter;
94 class BluetoothMessageFilter; 95 class BluetoothMessageFilter;
95 class BrowserPluginManager; 96 class BrowserPluginManager;
96 class CacheStorageDispatcher; 97 class CacheStorageDispatcher;
97 class CompositorForwardingMessageFilter; 98 class CompositorForwardingMessageFilter;
98 class ContextProviderCommandBuffer; 99 class ContextProviderCommandBuffer;
99 class DBMessageFilter; 100 class DBMessageFilter;
100 class DevToolsAgentFilter; 101 class DevToolsAgentFilter;
101 class DomStorageDispatcher; 102 class DomStorageDispatcher;
102 class EmbeddedWorkerDispatcher; 103 class EmbeddedWorkerDispatcher;
103 class GpuChannelHost; 104 class GpuChannelHost;
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; 530 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_;
530 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; 531 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_;
531 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; 532 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_;
532 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; 533 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_;
533 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; 534 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_;
534 535
535 // Used on the render thread and deleted by WebKit at shutdown. 536 // Used on the render thread and deleted by WebKit at shutdown.
536 blink::WebMediaStreamCenter* media_stream_center_; 537 blink::WebMediaStreamCenter* media_stream_center_;
537 538
538 // Used on the renderer and IPC threads. 539 // Used on the renderer and IPC threads.
540 scoped_refptr<BlobMessageFilter> blob_message_filter_;
539 scoped_refptr<DBMessageFilter> db_message_filter_; 541 scoped_refptr<DBMessageFilter> db_message_filter_;
540 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; 542 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_;
541 scoped_refptr<AudioMessageFilter> audio_message_filter_; 543 scoped_refptr<AudioMessageFilter> audio_message_filter_;
542 scoped_refptr<MidiMessageFilter> midi_message_filter_; 544 scoped_refptr<MidiMessageFilter> midi_message_filter_;
543 #if defined(OS_ANDROID) 545 #if defined(OS_ANDROID)
544 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; 546 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_;
545 #endif 547 #endif
546 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; 548 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_;
547 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; 549 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_;
548 550
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 713 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
712 }; 714 };
713 715
714 #if defined(COMPILER_MSVC) 716 #if defined(COMPILER_MSVC)
715 #pragma warning(pop) 717 #pragma warning(pop)
716 #endif 718 #endif
717 719
718 } // namespace content 720 } // namespace content
719 721
720 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 722 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698