diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 00:04:10 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 00:04:10 +0000 |
commit | 1910fe893606e5199a6359df1d57af34a42e59d5 (patch) | |
tree | 8c565ca45e16dbe41cc269f825b257b71f21b341 /content/renderer/render_thread_impl.h | |
parent | ebac2a8753009a83979f8e35d2371a4b48b4ee97 (diff) | |
download | chromium_src-1910fe893606e5199a6359df1d57af34a42e59d5.zip chromium_src-1910fe893606e5199a6359df1d57af34a42e59d5.tar.gz chromium_src-1910fe893606e5199a6359df1d57af34a42e59d5.tar.bz2 |
Pull domstorage specifics out of RenderThreadImpl into a seperate
DomStorageDispatcher class, and move existing renderer side domstorage
sources into a subdirectory so OWNERS can be applied more meaningfully.
BUG=94382
TBR=jam
Review URL: https://chromiumcodereview.appspot.com/10162015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136188 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_thread_impl.h')
-rw-r--r-- | content/renderer/render_thread_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h index 5b1e98d..015b7fd 100644 --- a/content/renderer/render_thread_impl.h +++ b/content/renderer/render_thread_impl.h @@ -30,7 +30,7 @@ class AudioMessageFilter; class CompositorThread; class DBMessageFilter; class DevToolsAgentFilter; -struct DOMStorageMsg_Event_Params; +class DomStorageDispatcher; class GpuChannelHost; class IndexedDBDispatcher; class RendererWebKitPlatformSupportImpl; @@ -208,7 +208,6 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread, void Init(); void OnSetZoomLevelForCurrentURL(const std::string& host, double zoom_level); - void OnDOMStorageEvent(const DOMStorageMsg_Event_Params& params); void OnSetCSSColors(const std::vector<CSSColors::CSSColorMapping>& colors); void OnCreateNewView(const ViewMsg_New_Params& params); void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); @@ -221,6 +220,7 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread, // These objects live solely on the render thread. scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; + scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_; |