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

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

Issue 10657011: IndexedDB: Remove IPC plumbing for obsolete property accessors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
Index: content/common/indexed_db/proxy_webidbindex_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbindex_impl.cc b/content/common/indexed_db/proxy_webidbindex_impl.cc
index 73e04183cc18ff55687dbc1b11c3dcc95b098713..3a2e05d1afb1f0f10b751ca451ef17a1526688fc 100644
--- a/content/common/indexed_db/proxy_webidbindex_impl.cc
+++ b/content/common/indexed_db/proxy_webidbindex_impl.cc
@@ -33,34 +33,6 @@ RendererWebIDBIndexImpl::~RendererWebIDBIndexImpl() {
idb_index_id_));
}
-WebString RendererWebIDBIndexImpl::name() const {
- string16 result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_IndexName(idb_index_id_, &result));
- return result;
-}
-
-WebIDBKeyPath RendererWebIDBIndexImpl::keyPath() const {
- IndexedDBKeyPath result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_IndexKeyPath(idb_index_id_, &result));
- return result;
-}
-
-bool RendererWebIDBIndexImpl::unique() const {
- bool result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_IndexUnique(idb_index_id_, &result));
- return result;
-}
-
-bool RendererWebIDBIndexImpl::multiEntry() const {
- bool result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_IndexMultiEntry(idb_index_id_, &result));
- return result;
-}
-
void RendererWebIDBIndexImpl::openObjectCursor(
const WebKit::WebIDBKeyRange& range,
unsigned short direction,
« no previous file with comments | « content/common/indexed_db/proxy_webidbindex_impl.h ('k') | content/common/indexed_db/proxy_webidbobjectstore_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698