diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-11 03:58:45 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-11 03:58:45 +0000 |
commit | 3d392a6fd21a84a4eae5cc340242219f5062b46d (patch) | |
tree | 99d0e4dd9d0b1128d6a0ab0b4b381db3f23c3e6c /chrome/common | |
parent | 8f0bcb9f2381746bfc8f234fe1fcf831321adbf5 (diff) | |
download | chromium_src-3d392a6fd21a84a4eae5cc340242219f5062b46d.zip chromium_src-3d392a6fd21a84a4eae5cc340242219f5062b46d.tar.gz chromium_src-3d392a6fd21a84a4eae5cc340242219f5062b46d.tar.bz2 |
Get rid of the half-working traces of locking, caching, and quotas. It
probably shoudln't have been added in to begin with.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/203015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25966 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-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, |