Index: chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h |
=================================================================== |
--- chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h (revision 36257) |
+++ chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h (working copy) |
@@ -10,7 +10,6 @@ |
#include "base/tracked.h" |
#include "chrome/browser/in_process_webkit/dom_storage_area.h" |
#include "chrome/browser/in_process_webkit/webkit_context.h" |
-#include "chrome/common/dom_storage_type.h" |
#include "ipc/ipc_message.h" |
class DOMStorageContext; |
@@ -39,6 +38,10 @@ |
// Only call from ResourceMessageFilter on the IO thread. |
bool OnMessageReceived(const IPC::Message& message, bool *msg_is_ok); |
+ // Clones a session storage namespace and returns the cloned namespaces' id. |
+ // Only call on the IO thread. |
+ int64 CloneSessionStorage(int64 original_id); |
+ |
// Send a message to the renderer process associated with our |
// message_sender_ via the IO thread. May be called from any thread. |
void Send(IPC::Message* message); |
@@ -53,8 +56,6 @@ |
~DOMStorageDispatcherHost(); |
// Message Handlers. |
- void OnNamespaceId(DOMStorageType storage_type, IPC::Message* reply_msg); |
- void OnCloneNamespaceId(int64 namespace_id, IPC::Message* reply_msg); |
void OnStorageAreaId(int64 namespace_id, const string16& origin, |
IPC::Message* reply_msg); |
void OnLength(int64 storage_area_id, IPC::Message* reply_msg); |