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

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: Rebased 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
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 471
471 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); 472 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d();
472 473
473 // These objects live solely on the render thread. 474 // These objects live solely on the render thread.
474 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; 475 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_;
475 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; 476 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_;
476 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; 477 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
477 scoped_ptr<RendererScheduler> renderer_scheduler_; 478 scoped_ptr<RendererScheduler> renderer_scheduler_;
478 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; 479 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_;
479 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; 480 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_;
481 scoped_ptr<ServiceWorkerCacheStorageDispatcher>
482 main_thread_cache_storage_dispatcher_;
480 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; 483 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_;
481 484
482 // Used on the render thread and deleted by WebKit at shutdown. 485 // Used on the render thread and deleted by WebKit at shutdown.
483 blink::WebMediaStreamCenter* media_stream_center_; 486 blink::WebMediaStreamCenter* media_stream_center_;
484 487
485 // Used on the renderer and IPC threads. 488 // Used on the renderer and IPC threads.
486 scoped_refptr<DBMessageFilter> db_message_filter_; 489 scoped_refptr<DBMessageFilter> db_message_filter_;
487 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; 490 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_;
488 scoped_refptr<AudioMessageFilter> audio_message_filter_; 491 scoped_refptr<AudioMessageFilter> audio_message_filter_;
489 scoped_refptr<MidiMessageFilter> midi_message_filter_; 492 scoped_refptr<MidiMessageFilter> midi_message_filter_;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 642 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
640 }; 643 };
641 644
642 #if defined(COMPILER_MSVC) 645 #if defined(COMPILER_MSVC)
643 #pragma warning(pop) 646 #pragma warning(pop)
644 #endif 647 #endif
645 648
646 } // namespace content 649 } // namespace content
647 650
648 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 651 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698