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

Unified Diff: content/common/indexed_db/proxy_webidbtransaction_impl.cc

Issue 11828054: Remove IPC code for old methods. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix merge conflicts Created 7 years, 11 months 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 | « content/common/indexed_db/proxy_webidbtransaction_impl.h ('k') | content/content_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/proxy_webidbtransaction_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbtransaction_impl.cc b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
index e869ebb53901348c9427ef820538343e824f6b6b..f717ef9905641653299d84211d742a243204f228 100644
--- a/content/common/indexed_db/proxy_webidbtransaction_impl.cc
+++ b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
@@ -6,10 +6,8 @@
#include "content/common/indexed_db/indexed_db_messages.h"
#include "content/common/indexed_db/indexed_db_dispatcher.h"
-#include "content/common/indexed_db/proxy_webidbobjectstore_impl.h"
#include "content/common/child_thread.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCallbacks.h"
using WebKit::WebIDBObjectStore;
@@ -32,18 +30,6 @@ RendererWebIDBTransactionImpl::~RendererWebIDBTransactionImpl() {
ipc_transaction_id_));
}
-WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
- long long object_store_id,
- WebKit::WebExceptionCode& ec) {
- int ipc_object_store_id;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_TransactionObjectStore(
- ipc_transaction_id_, object_store_id, &ipc_object_store_id, &ec));
- if (!object_store_id)
- return NULL;
- return new RendererWebIDBObjectStoreImpl(ipc_object_store_id);
-}
-
void RendererWebIDBTransactionImpl::commit() {
IndexedDBDispatcher::Send(new IndexedDBHostMsg_TransactionCommit(
ipc_transaction_id_));
« no previous file with comments | « content/common/indexed_db/proxy_webidbtransaction_impl.h ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698