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

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

Issue 1039763002: Cache Storage: Move files to content/*/cache_storage, rename classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN fix 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 } 75 }
76 76
77 namespace content { 77 namespace content {
78 78
79 class AppCacheDispatcher; 79 class AppCacheDispatcher;
80 class AecDumpMessageFilter; 80 class AecDumpMessageFilter;
81 class AudioInputMessageFilter; 81 class AudioInputMessageFilter;
82 class AudioMessageFilter; 82 class AudioMessageFilter;
83 class AudioRendererMixerManager; 83 class AudioRendererMixerManager;
84 class BrowserPluginManager; 84 class BrowserPluginManager;
85 class CacheStorageDispatcher;
85 class CompositorForwardingMessageFilter; 86 class CompositorForwardingMessageFilter;
86 class ContextProviderCommandBuffer; 87 class ContextProviderCommandBuffer;
87 class DBMessageFilter; 88 class DBMessageFilter;
88 class DevToolsAgentFilter; 89 class DevToolsAgentFilter;
89 class DomStorageDispatcher; 90 class DomStorageDispatcher;
90 class EmbeddedWorkerDispatcher; 91 class EmbeddedWorkerDispatcher;
91 class GpuChannelHost; 92 class GpuChannelHost;
92 class IndexedDBDispatcher; 93 class IndexedDBDispatcher;
93 class InputHandlerManager; 94 class InputHandlerManager;
94 class MediaStreamCenter; 95 class MediaStreamCenter;
95 class MemoryObserver; 96 class MemoryObserver;
96 class MidiMessageFilter; 97 class MidiMessageFilter;
97 class NetInfoDispatcher; 98 class NetInfoDispatcher;
98 class P2PSocketDispatcher; 99 class P2PSocketDispatcher;
99 class PeerConnectionDependencyFactory; 100 class PeerConnectionDependencyFactory;
100 class PeerConnectionTracker; 101 class PeerConnectionTracker;
101 class RenderProcessObserver; 102 class RenderProcessObserver;
102 class RendererBlinkPlatformImpl; 103 class RendererBlinkPlatformImpl;
103 class RendererDemuxerAndroid; 104 class RendererDemuxerAndroid;
104 class RendererScheduler; 105 class RendererScheduler;
105 class ResourceDispatchThrottler; 106 class ResourceDispatchThrottler;
106 class ResourceSchedulingFilter; 107 class ResourceSchedulingFilter;
107 class ServiceWorkerCacheStorageDispatcher;
108 class V8SamplingProfiler; 108 class V8SamplingProfiler;
109 class VideoCaptureImplManager; 109 class VideoCaptureImplManager;
110 class WebGraphicsContext3DCommandBufferImpl; 110 class WebGraphicsContext3DCommandBufferImpl;
111 class WebRTCIdentityService; 111 class WebRTCIdentityService;
112 112
113 #if defined(COMPILER_MSVC) 113 #if defined(COMPILER_MSVC)
114 // See explanation for other RenderViewHostImpl which is the same issue. 114 // See explanation for other RenderViewHostImpl which is the same issue.
115 #pragma warning(push) 115 #pragma warning(push)
116 #pragma warning(disable: 4250) 116 #pragma warning(disable: 4250)
117 #endif 117 #endif
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 474
475 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); 475 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d();
476 476
477 // These objects live solely on the render thread. 477 // These objects live solely on the render thread.
478 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; 478 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_;
479 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; 479 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_;
480 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; 480 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
481 scoped_ptr<RendererScheduler> renderer_scheduler_; 481 scoped_ptr<RendererScheduler> renderer_scheduler_;
482 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; 482 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_;
483 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; 483 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_;
484 scoped_ptr<ServiceWorkerCacheStorageDispatcher> 484 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_;
485 main_thread_cache_storage_dispatcher_;
486 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; 485 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_;
487 486
488 // Used on the render thread and deleted by WebKit at shutdown. 487 // Used on the render thread and deleted by WebKit at shutdown.
489 blink::WebMediaStreamCenter* media_stream_center_; 488 blink::WebMediaStreamCenter* media_stream_center_;
490 489
491 // Used on the renderer and IPC threads. 490 // Used on the renderer and IPC threads.
492 scoped_refptr<DBMessageFilter> db_message_filter_; 491 scoped_refptr<DBMessageFilter> db_message_filter_;
493 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; 492 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_;
494 scoped_refptr<AudioMessageFilter> audio_message_filter_; 493 scoped_refptr<AudioMessageFilter> audio_message_filter_;
495 scoped_refptr<MidiMessageFilter> midi_message_filter_; 494 scoped_refptr<MidiMessageFilter> midi_message_filter_;
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 650 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
652 }; 651 };
653 652
654 #if defined(COMPILER_MSVC) 653 #if defined(COMPILER_MSVC)
655 #pragma warning(pop) 654 #pragma warning(pop)
656 #endif 655 #endif
657 656
658 } // namespace content 657 } // namespace content
659 658
660 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 659 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/cache_storage/webserviceworkercachestorage_impl.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698