diff options
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 7b6ee02..350bb83 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -1620,29 +1620,12 @@ IPC_BEGIN_MESSAGES(ViewHost) int64 /* namespace_id to clone */, int64 /* new_namespace_id */) - // Explicitly drop a reference to a namespace. This is done implicitly - // for all namespaces owned by a renderer process when it dies. - IPC_MESSAGE_CONTROL1(ViewHostMsg_DOMStorageDerefNamespaceId, - int64 /* namespace_id */) - // Get the storage area id for a particular origin within a namespace. IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_DOMStorageStorageAreaId, int64 /* namespace_id */, string16 /* origin */, int64 /* storage_area_id */) - // Lock a particular origin (per the DOM Storage spec). - IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_DOMStorageLock, - int64 /* storage_area_id */, - bool /* invalidate_cache */, - size_t /* bytes_left_in_quota */) - - // Release the lock on a particular storage area. This should happen - // whenever we exit a script region, do something synchronous, or - // explicitly drop the lock via navigator.releaseLock(). - IPC_MESSAGE_CONTROL1(ViewHostMsg_DOMStorageUnlock, - int64 /* storage_area_id */) - // Get the length of a storage area. IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_DOMStorageLength, int64 /* storage_area_id */, @@ -1672,9 +1655,8 @@ IPC_BEGIN_MESSAGES(ViewHost) string16 /* key */) // Clear the storage area. - IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_DOMStorageClear, - int64 /* storage_area_id */, - size_t /* bytes_left_in_quota */) + IPC_MESSAGE_CONTROL1(ViewHostMsg_DOMStorageClear, + int64 /* storage_area_id */) // Get file size in bytes. Set result to -1 if failed to get the file size. IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetFileSize, |