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

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

Issue 992353003: Decouple Cache Storage messaging from Service Worker/Embedded Worker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused public stubs Created 5 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 <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 class ContextProviderCommandBuffer; 85 class ContextProviderCommandBuffer;
86 class DBMessageFilter; 86 class DBMessageFilter;
87 class DevToolsAgentFilter; 87 class DevToolsAgentFilter;
88 class DomStorageDispatcher; 88 class DomStorageDispatcher;
89 class EmbeddedWorkerDispatcher; 89 class EmbeddedWorkerDispatcher;
90 class GpuChannelHost; 90 class GpuChannelHost;
91 class IndexedDBDispatcher; 91 class IndexedDBDispatcher;
92 class InputHandlerManager; 92 class InputHandlerManager;
93 class MediaStreamCenter; 93 class MediaStreamCenter;
94 class MemoryObserver; 94 class MemoryObserver;
95 class PeerConnectionDependencyFactory;
96 class MidiMessageFilter; 95 class MidiMessageFilter;
97 class NetInfoDispatcher; 96 class NetInfoDispatcher;
98 class P2PSocketDispatcher; 97 class P2PSocketDispatcher;
98 class PeerConnectionDependencyFactory;
99 class PeerConnectionTracker; 99 class PeerConnectionTracker;
100 class RenderProcessObserver; 100 class RenderProcessObserver;
101 class RendererBlinkPlatformImpl; 101 class RendererBlinkPlatformImpl;
102 class RendererDemuxerAndroid; 102 class RendererDemuxerAndroid;
103 class RendererScheduler; 103 class RendererScheduler;
104 class ResourceDispatchThrottler; 104 class ResourceDispatchThrottler;
105 class ResourceSchedulingFilter; 105 class ResourceSchedulingFilter;
106 class ServiceWorkerCacheStorageDispatcher;
106 class V8SamplingProfiler; 107 class V8SamplingProfiler;
107 class VideoCaptureImplManager; 108 class VideoCaptureImplManager;
108 class WebGraphicsContext3DCommandBufferImpl; 109 class WebGraphicsContext3DCommandBufferImpl;
109 class WebRTCIdentityService; 110 class WebRTCIdentityService;
110 111
111 #if defined(COMPILER_MSVC) 112 #if defined(COMPILER_MSVC)
112 // See explanation for other RenderViewHostImpl which is the same issue. 113 // See explanation for other RenderViewHostImpl which is the same issue.
113 #pragma warning(push) 114 #pragma warning(push)
114 #pragma warning(disable: 4250) 115 #pragma warning(disable: 4250)
115 #endif 116 #endif
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 472
472 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); 473 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d();
473 474
474 // These objects live solely on the render thread. 475 // These objects live solely on the render thread.
475 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; 476 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_;
476 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; 477 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_;
477 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; 478 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
478 scoped_ptr<RendererScheduler> renderer_scheduler_; 479 scoped_ptr<RendererScheduler> renderer_scheduler_;
479 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; 480 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_;
480 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; 481 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_;
482 scoped_ptr<ServiceWorkerCacheStorageDispatcher>
483 main_thread_cache_storage_dispatcher_;
481 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; 484 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_;
482 485
483 // Used on the render thread and deleted by WebKit at shutdown. 486 // Used on the render thread and deleted by WebKit at shutdown.
484 blink::WebMediaStreamCenter* media_stream_center_; 487 blink::WebMediaStreamCenter* media_stream_center_;
485 488
486 // Used on the renderer and IPC threads. 489 // Used on the renderer and IPC threads.
487 scoped_refptr<DBMessageFilter> db_message_filter_; 490 scoped_refptr<DBMessageFilter> db_message_filter_;
488 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; 491 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_;
489 scoped_refptr<AudioMessageFilter> audio_message_filter_; 492 scoped_refptr<AudioMessageFilter> audio_message_filter_;
490 scoped_refptr<MidiMessageFilter> midi_message_filter_; 493 scoped_refptr<MidiMessageFilter> midi_message_filter_;
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 631 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
629 }; 632 };
630 633
631 #if defined(COMPILER_MSVC) 634 #if defined(COMPILER_MSVC)
632 #pragma warning(pop) 635 #pragma warning(pop)
633 #endif 636 #endif
634 637
635 } // namespace content 638 } // namespace content
636 639
637 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 640 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698