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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 | 162 |
163 // Will be NULL if threaded compositing has not been enabled. | 163 // Will be NULL if threaded compositing has not been enabled. |
164 CompositorThread* compositor_thread() const { | 164 CompositorThread* compositor_thread() const { |
165 return compositor_thread_.get(); | 165 return compositor_thread_.get(); |
166 } | 166 } |
167 | 167 |
168 AppCacheDispatcher* appcache_dispatcher() const { | 168 AppCacheDispatcher* appcache_dispatcher() const { |
169 return appcache_dispatcher_.get(); | 169 return appcache_dispatcher_.get(); |
170 } | 170 } |
171 | 171 |
| 172 DomStorageDispatcher* dom_storage_dispatcher() const { |
| 173 return dom_storage_dispatcher_.get(); |
| 174 } |
| 175 |
172 AudioInputMessageFilter* audio_input_message_filter() { | 176 AudioInputMessageFilter* audio_input_message_filter() { |
173 return audio_input_message_filter_.get(); | 177 return audio_input_message_filter_.get(); |
174 } | 178 } |
175 | 179 |
176 AudioMessageFilter* audio_message_filter() { | 180 AudioMessageFilter* audio_message_filter() { |
177 return audio_message_filter_.get(); | 181 return audio_message_filter_.get(); |
178 } | 182 } |
179 | 183 |
180 // Creates the embedder implementation of WebMediaStreamCenter. | 184 // Creates the embedder implementation of WebMediaStreamCenter. |
181 // The resulting object is owned by WebKit and deleted by WebKit at tear-down. | 185 // The resulting object is owned by WebKit and deleted by WebKit at tear-down. |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 | 278 |
275 bool compositor_initialized_; | 279 bool compositor_initialized_; |
276 scoped_ptr<CompositorThread> compositor_thread_; | 280 scoped_ptr<CompositorThread> compositor_thread_; |
277 | 281 |
278 ObserverList<content::RenderProcessObserver> observers_; | 282 ObserverList<content::RenderProcessObserver> observers_; |
279 | 283 |
280 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 284 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
281 }; | 285 }; |
282 | 286 |
283 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 287 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |