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

Unified Diff: chrome/renderer/renderer_webidbtransaction_impl.cc

Issue 5680007: Make IndexedDBDispatcherHost be a message filter and move its messages into a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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
« no previous file with comments | « chrome/renderer/renderer_webidbobjectstore_impl.cc ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/renderer_webidbtransaction_impl.cc
===================================================================
--- chrome/renderer/renderer_webidbtransaction_impl.cc (revision 69028)
+++ chrome/renderer/renderer_webidbtransaction_impl.cc (working copy)
@@ -4,7 +4,7 @@
#include "chrome/renderer/renderer_webidbtransaction_impl.h"
-#include "chrome/common/render_messages.h"
+#include "chrome/common/indexed_db_messages.h"
#include "chrome/renderer/indexed_db_dispatcher.h"
#include "chrome/renderer/render_thread.h"
#include "chrome/renderer/renderer_webidbobjectstore_impl.h"
@@ -22,14 +22,14 @@
}
RendererWebIDBTransactionImpl::~RendererWebIDBTransactionImpl() {
- RenderThread::current()->Send(new ViewHostMsg_IDBTransactionDestroyed(
+ RenderThread::current()->Send(new IndexedDBHostMsg_TransactionDestroyed(
idb_transaction_id_));
}
int RendererWebIDBTransactionImpl::mode() const
{
int mode;
- RenderThread::current()->Send(new ViewHostMsg_IDBTransactionMode(
+ RenderThread::current()->Send(new IndexedDBHostMsg_TransactionMode(
idb_transaction_id_, &mode));
return mode;
}
@@ -40,7 +40,7 @@
{
int object_store_id;
RenderThread::current()->Send(
- new ViewHostMsg_IDBTransactionObjectStore(
+ new IndexedDBHostMsg_TransactionObjectStore(
idb_transaction_id_, name, &object_store_id, &ec));
if (!object_store_id)
return NULL;
@@ -49,14 +49,14 @@
void RendererWebIDBTransactionImpl::abort()
{
- RenderThread::current()->Send(new ViewHostMsg_IDBTransactionAbort(
+ RenderThread::current()->Send(new IndexedDBHostMsg_TransactionAbort(
idb_transaction_id_));
}
void RendererWebIDBTransactionImpl::didCompleteTaskEvents()
{
RenderThread::current()->Send(
- new ViewHostMsg_IDBTransactionDidCompleteTaskEvents(
+ new IndexedDBHostMsg_TransactionDidCompleteTaskEvents(
idb_transaction_id_));
}
Property changes on: chrome\renderer\renderer_webidbtransaction_impl.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/renderer/renderer_webidbobjectstore_impl.cc ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698