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
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 CompositorThread;
 class DBMessageFilter;
 class DevToolsAgentFilter;
-struct DOMStorageMsg_Event_Params;
+class DomStorageDispatcher;
 class GpuChannelHost;
 class IndexedDBDispatcher;
 class RendererWebKitPlatformSupportImpl;
@@ -208,7 +208,6 @@
   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 @@
 
   // 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_;