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 161 matching lines...) Loading... |
172 } | 172 } |
173 | 173 |
174 content::BrowserPluginChannelManager* browser_plugin_channel_manager() const { | 174 content::BrowserPluginChannelManager* browser_plugin_channel_manager() const { |
175 return browser_plugin_channel_manager_.get(); | 175 return browser_plugin_channel_manager_.get(); |
176 } | 176 } |
177 | 177 |
178 AppCacheDispatcher* appcache_dispatcher() const { | 178 AppCacheDispatcher* appcache_dispatcher() const { |
179 return appcache_dispatcher_.get(); | 179 return appcache_dispatcher_.get(); |
180 } | 180 } |
181 | 181 |
| 182 DomStorageDispatcher* dom_storage_dispatcher() const { |
| 183 return dom_storage_dispatcher_.get(); |
| 184 } |
| 185 |
182 AudioInputMessageFilter* audio_input_message_filter() { | 186 AudioInputMessageFilter* audio_input_message_filter() { |
183 return audio_input_message_filter_.get(); | 187 return audio_input_message_filter_.get(); |
184 } | 188 } |
185 | 189 |
186 AudioMessageFilter* audio_message_filter() { | 190 AudioMessageFilter* audio_message_filter() { |
187 return audio_message_filter_.get(); | 191 return audio_message_filter_.get(); |
188 } | 192 } |
189 | 193 |
190 // Creates the embedder implementation of WebMediaStreamCenter. | 194 // Creates the embedder implementation of WebMediaStreamCenter. |
191 // The resulting object is owned by WebKit and deleted by WebKit at tear-down. | 195 // The resulting object is owned by WebKit and deleted by WebKit at tear-down. |
(...skipping 95 matching lines...) Loading... |
287 bool compositor_initialized_; | 291 bool compositor_initialized_; |
288 scoped_ptr<CompositorThread> compositor_thread_; | 292 scoped_ptr<CompositorThread> compositor_thread_; |
289 scoped_ptr<content::BrowserPluginRegistry> browser_plugin_registry_; | 293 scoped_ptr<content::BrowserPluginRegistry> browser_plugin_registry_; |
290 | 294 |
291 ObserverList<content::RenderProcessObserver> observers_; | 295 ObserverList<content::RenderProcessObserver> observers_; |
292 | 296 |
293 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 297 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
294 }; | 298 }; |
295 | 299 |
296 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 300 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |