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

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

Issue 10383123: Switch to using the async DomStorage IPC messages and add a caching layer … (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
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 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
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...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « content/renderer/dom_storage/webstoragearea_impl.cc ('k') | webkit/dom_storage/dom_storage_area.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698