Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: chrome/common/render_messages_internal.h

Issue 5722003: Make DOMStorageDispatcherHost be a message filter (and rename it accordingly)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: get rid of _DELAY_HANDLE macro Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 69012)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -914,10 +914,6 @@
string16 /* the origin */,
string16 /* the database name */)
-// Storage events are broadcast to renderer processes.
-IPC_MESSAGE_CONTROL1(ViewMsg_DOMStorageEvent,
- ViewMsg_DOMStorageEvent_Params)
-
// IDBCallback message handlers.
IPC_MESSAGE_CONTROL1(ViewMsg_IDBCallbacksSuccessNull,
int32 /* response_id */)
@@ -2369,51 +2365,6 @@
double /* expected_response_time */,
std::vector<char> /* data */)
-// 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 */)
-
-// Get the length of a storage area.
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_DOMStorageLength,
- int64 /* storage_area_id */,
- unsigned /* length */)
-
-// Get a the ith key within a storage area.
-IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_DOMStorageKey,
- int64 /* storage_area_id */,
- unsigned /* index */,
- NullableString16 /* key */)
-
-// Get a value based on a key from a storage area.
-IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_DOMStorageGetItem,
- int64 /* storage_area_id */,
- string16 /* key */,
- NullableString16 /* value */)
-
-// Set a value that's associated with a key in a storage area.
-IPC_SYNC_MESSAGE_ROUTED4_2(ViewHostMsg_DOMStorageSetItem,
- int64 /* storage_area_id */,
- string16 /* key */,
- string16 /* value */,
- GURL /* url */,
- WebKit::WebStorageArea::Result /* result */,
- NullableString16 /* old_value */)
-
-// Remove the value associated with a key in a storage area.
-IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_DOMStorageRemoveItem,
- int64 /* storage_area_id */,
- string16 /* key */,
- GURL /* url */,
- NullableString16 /* old_value */)
-
-// Clear the storage area.
-IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_DOMStorageClear,
- int64 /* storage_area_id */,
- GURL /* url */,
- bool /* something_cleared */)
-
// WebIDBCursor::direction() message.
IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBCursorDirection,
int32, /* idb_cursor_id */

Powered by Google App Engine
This is Rietveld 408576698