Index: chrome/common/render_messages_internal.h |
=================================================================== |
--- chrome/common/render_messages_internal.h (revision 69028) |
+++ chrome/common/render_messages_internal.h (working copy) |
@@ -23,7 +23,6 @@ |
#include "chrome/common/window_container_type.h" |
#include "ipc/ipc_message_macros.h" |
#include "media/audio/audio_buffers_state.h" |
-#include "third_party/WebKit/WebKit/chromium/public/WebExceptionCode.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" |
@@ -51,7 +50,6 @@ |
class Value; |
class GPUInfo; |
-class SerializedScriptValue; |
class SkBitmap; |
struct ThumbnailScore; |
class WebCursor; |
@@ -918,43 +916,6 @@ |
IPC_MESSAGE_CONTROL1(ViewMsg_DOMStorageEvent, |
ViewMsg_DOMStorageEvent_Params) |
-// IDBCallback message handlers. |
-IPC_MESSAGE_CONTROL1(ViewMsg_IDBCallbacksSuccessNull, |
- int32 /* response_id */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessIDBCursor, |
- int32 /* response_id */, |
- int32 /* cursor_id */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessIDBDatabase, |
- int32 /* response_id */, |
- int32 /* idb_database_id */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessIndexedDBKey, |
- int32 /* response_id */, |
- IndexedDBKey /* indexed_db_key */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessIDBIndex, |
- int32 /* response_id */, |
- int32 /* idb_index_id */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessIDBObjectStore, |
- int32 /* response_id */, |
- int32 /* idb_object_store_id */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessIDBTransaction, |
- int32 /* response_id */, |
- int32 /* idb_transaction_id */) |
-IPC_MESSAGE_CONTROL2(ViewMsg_IDBCallbacksSuccessSerializedScriptValue, |
- int32 /* response_id */, |
- SerializedScriptValue /* serialized_script_value */) |
-IPC_MESSAGE_CONTROL3(ViewMsg_IDBCallbacksError, |
- int32 /* response_id */, |
- int /* code */, |
- string16 /* message */) |
- |
-// IDBTransactionCallback message handlers. |
-IPC_MESSAGE_CONTROL1(ViewMsg_IDBTransactionCallbacksAbort, |
- int32 /* transaction_id */) |
-IPC_MESSAGE_CONTROL1(ViewMsg_IDBTransactionCallbacksComplete, |
- int32 /* transaction_id */) |
-IPC_MESSAGE_CONTROL1(ViewMsg_IDBTransactionCallbacksTimeout, |
- int32 /* transaction_id */) |
- |
#if defined(IPC_MESSAGE_LOG_ENABLED) |
// Tell the renderer process to begin or end IPC message logging. |
IPC_MESSAGE_CONTROL1(ViewMsg_SetIPCLoggingEnabled, |
@@ -2414,241 +2375,6 @@ |
GURL /* url */, |
bool /* something_cleared */) |
-// WebIDBCursor::direction() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBCursorDirection, |
- int32, /* idb_cursor_id */ |
- int32 /* direction */) |
- |
-// WebIDBCursor::key() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBCursorKey, |
- int32, /* idb_cursor_id */ |
- IndexedDBKey) |
- |
-// WebIDBCursor::value() message. |
-IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_IDBCursorValue, |
- int32, /* idb_cursor_id */ |
- SerializedScriptValue, /* script_value */ |
- IndexedDBKey /* key */) |
- |
-// WebIDBCursor::update() message. |
-IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_IDBCursorUpdate, |
- int32, /* idb_cursor_id */ |
- int32, /* response_id */ |
- SerializedScriptValue, /* value */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBCursor::continue() message. |
-IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_IDBCursorContinue, |
- int32, /* idb_cursor_id */ |
- int32, /* response_id */ |
- IndexedDBKey, /* key */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBCursor::remove() message. |
-IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_IDBCursorDelete, |
- int32, /* idb_cursor_id */ |
- int32, /* response_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBFactory::open() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBFactoryOpen, |
- ViewHostMsg_IDBFactoryOpen_Params) |
- |
-// WebIDBDatabase::name() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBDatabaseName, |
- int32, /* idb_database_id */ |
- string16 /* name */) |
- |
-// WebIDBDatabase::version() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBDatabaseVersion, |
- int32, /* idb_database_id */ |
- string16 /* vesion */) |
- |
-// WebIDBDatabase::objectStoreNames() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBDatabaseObjectStoreNames, |
- int32, /* idb_database_id */ |
- std::vector<string16> /* objectStoreNames */) |
- |
-// WebIDBDatabase::createObjectStore() message. |
-IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_IDBDatabaseCreateObjectStore, |
- ViewHostMsg_IDBDatabaseCreateObjectStore_Params, |
- int32, /* object_store_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBDatabase::removeObjectStore() message. |
-IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_IDBDatabaseDeleteObjectStore, |
- int32, /* idb_database_id */ |
- string16, /* name */ |
- int32, /* transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBDatabase::setVersion() message. |
-IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_IDBDatabaseSetVersion, |
- int32, /* idb_database_id */ |
- int32, /* response_id */ |
- string16, /* version */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBDatabase::transaction() message. |
-// TODO: make this message async. Have the renderer create a |
-// temporary ID and keep a map in the browser process of real |
-// IDs to temporary IDs. We can then update the transaction |
-// to its real ID asynchronously. |
-IPC_SYNC_MESSAGE_CONTROL4_2(ViewHostMsg_IDBDatabaseTransaction, |
- int32, /* idb_database_id */ |
- std::vector<string16>, /* object_stores */ |
- int32, /* mode */ |
- int32, /* timeout */ |
- int32, /* idb_transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBDatabase::~WebIDBDatabase() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBDatabaseDestroyed, |
- int32 /* idb_database_id */) |
- |
-// WebIDBIndex::name() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBIndexName, |
- int32, /* idb_index_id */ |
- string16 /* name */) |
- |
-// WebIDBIndex::storeName() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBIndexStoreName, |
- int32, /* idb_index_id */ |
- string16 /* store_name */) |
- |
-// WebIDBIndex::keyPath() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBIndexKeyPath, |
- int32, /* idb_index_id */ |
- NullableString16 /* key_path */) |
- |
-// WebIDBIndex::unique() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBIndexUnique, |
- int32, /* idb_unique_id */ |
- bool /* unique */) |
- |
-// WebIDBIndex::openObjectCursor() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBIndexOpenObjectCursor, |
- ViewHostMsg_IDBIndexOpenCursor_Params, |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBIndex::openKeyCursor() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBIndexOpenKeyCursor, |
- ViewHostMsg_IDBIndexOpenCursor_Params, |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBIndex::getObject() message. |
-IPC_SYNC_MESSAGE_CONTROL4_1(ViewHostMsg_IDBIndexGetObject, |
- int32, /* idb_index_id */ |
- int32, /* response_id */ |
- IndexedDBKey, /* key */ |
- int32, /* transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBIndex::getKey() message. |
-IPC_SYNC_MESSAGE_CONTROL4_1(ViewHostMsg_IDBIndexGetKey, |
- int32, /* idb_index_id */ |
- int32, /* response_id */ |
- IndexedDBKey, /* key */ |
- int32, /* transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBIndex::~WebIDBIndex() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBIndexDestroyed, |
- int32 /* idb_index_id */) |
- |
-// WebIDBObjectStore::name() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBObjectStoreName, |
- int32, /* idb_object_store_id */ |
- string16 /* name */) |
- |
-// WebIDBObjectStore::keyPath() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBObjectStoreKeyPath, |
- int32, /* idb_object_store_id */ |
- NullableString16 /* keyPath */) |
- |
-// WebIDBObjectStore::indexNames() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBObjectStoreIndexNames, |
- int32, /* idb_object_store_id */ |
- std::vector<string16> /* index_names */) |
- |
-// WebIDBObjectStore::get() message. |
-IPC_SYNC_MESSAGE_CONTROL4_1(ViewHostMsg_IDBObjectStoreGet, |
- int32, /* idb_object_store_id */ |
- int32, /* response_id */ |
- IndexedDBKey, /* key */ |
- int32, /* transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::put() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBObjectStorePut, |
- ViewHostMsg_IDBObjectStorePut_Params, |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::delete() message. |
-IPC_SYNC_MESSAGE_CONTROL4_1(ViewHostMsg_IDBObjectStoreDelete, |
- int32, /* idb_object_store_id */ |
- int32, /* response_id */ |
- IndexedDBKey, /* key */ |
- int32, /* transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::createIndex() message. |
-IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_IDBObjectStoreCreateIndex, |
- ViewHostMsg_IDBObjectStoreCreateIndex_Params, |
- int32, /* index_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::index() message. |
-IPC_SYNC_MESSAGE_CONTROL2_2(ViewHostMsg_IDBObjectStoreIndex, |
- int32, /* idb_object_store_id */ |
- string16, /* name */ |
- int32, /* idb_index_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::deleteIndex() message. |
-IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_IDBObjectStoreDeleteIndex, |
- int32, /* idb_object_store_id */ |
- string16, /* name */ |
- int32, /* transaction_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::openCursor() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBObjectStoreOpenCursor, |
- ViewHostMsg_IDBObjectStoreOpenCursor_Params, |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBObjectStore::~WebIDBObjectStore() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBObjectStoreDestroyed, |
- int32 /* idb_object_store_id */) |
- |
-// WebIDBDatabase::~WebIDBCursor() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBCursorDestroyed, |
- int32 /* idb_cursor_id */) |
- |
-// IDBTransaction::ObjectStore message. |
-IPC_SYNC_MESSAGE_CONTROL2_2(ViewHostMsg_IDBTransactionObjectStore, |
- int32, /* transaction_id */ |
- string16, /* name */ |
- int32, /* object_store_id */ |
- WebKit::WebExceptionCode /* ec */) |
- |
-// WebIDBTransaction::mode() message. |
-IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_IDBTransactionMode, |
- int32, /* idb_transaction_id */ |
- int /* mode */) |
- |
-// WebIDBTransaction::abort() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBTransactionAbort, |
- int32 /* idb_transaction_id */) |
- |
-// IDBTransaction::DidCompleteTaskEvents() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBTransactionDidCompleteTaskEvents, |
- int32 /* idb_transaction_id */) |
- |
-// WebIDBTransaction::~WebIDBTransaction() message. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBTransactionDestroyed, |
- int32 /* idb_transaction_id */) |
- |
// Opens a file asynchronously. The response returns a file descriptor |
// and an error code from base/platform_file.h. |
IPC_MESSAGE_ROUTED3(ViewHostMsg_AsyncOpenFile, |