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

Unified Diff: content/common/indexed_db/proxy_webidbobjectstore_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
« no previous file with comments | « content/common/indexed_db/proxy_webidbobjectstore_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/proxy_webidbobjectstore_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
index 565452a63509677a3cd2d4720b87e37f22e2478b..85a5838d2bc996d34ff9718d14f3547db535c014 100644
--- a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
+++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
@@ -46,41 +46,6 @@ RendererWebIDBObjectStoreImpl::~RendererWebIDBObjectStoreImpl() {
new IndexedDBHostMsg_ObjectStoreDestroyed(idb_object_store_id_));
}
-WebString RendererWebIDBObjectStoreImpl::name() const {
- string16 result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_ObjectStoreName(idb_object_store_id_, &result));
- return result;
-}
-
-WebIDBKeyPath RendererWebIDBObjectStoreImpl::keyPath() const {
- IndexedDBKeyPath result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_ObjectStoreKeyPath(idb_object_store_id_, &result));
- return result;
-}
-
-WebDOMStringList RendererWebIDBObjectStoreImpl::indexNames() const {
- std::vector<string16> result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_ObjectStoreIndexNames(
- idb_object_store_id_, &result));
- WebDOMStringList web_result;
- for (std::vector<string16>::const_iterator it = result.begin();
- it != result.end(); ++it) {
- web_result.append(*it);
- }
- return web_result;
-}
-
-bool RendererWebIDBObjectStoreImpl::autoIncrement() const {
- bool result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_ObjectStoreAutoIncrement(
- idb_object_store_id_, &result));
- return result;
-}
-
void RendererWebIDBObjectStoreImpl::get(
const WebIDBKeyRange& key_range,
WebIDBCallbacks* callbacks,
« no previous file with comments | « content/common/indexed_db/proxy_webidbobjectstore_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698