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

Unified Diff: content/common/indexed_db/proxy_webidbdatabase_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_webidbdatabase_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbdatabase_impl.cc b/content/common/indexed_db/proxy_webidbdatabase_impl.cc
index 0a8f9c4e1795b51c72255092c1b71e278a62fce3..dce36fdbd144bd6c331f714949ceb6c23c346d52 100644
--- a/content/common/indexed_db/proxy_webidbdatabase_impl.cc
+++ b/content/common/indexed_db/proxy_webidbdatabase_impl.cc
@@ -79,32 +79,6 @@ WebIDBMetadata RendererWebIDBDatabaseImpl::metadata() const {
return web_metadata;
}
-WebString RendererWebIDBDatabaseImpl::name() const {
- string16 result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_DatabaseName(idb_database_id_, &result));
- return result;
-}
-
-WebString RendererWebIDBDatabaseImpl::version() const {
- string16 result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_DatabaseVersion(idb_database_id_, &result));
- return result;
-}
-
-WebDOMStringList RendererWebIDBDatabaseImpl::objectStoreNames() const {
- std::vector<string16> result;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_DatabaseObjectStoreNames(idb_database_id_, &result));
- WebDOMStringList webResult;
- for (std::vector<string16>::const_iterator it = result.begin();
- it != result.end(); ++it) {
- webResult.append(*it);
- }
- return webResult;
-}
-
WebKit::WebIDBObjectStore* RendererWebIDBDatabaseImpl::createObjectStore(
const WebKit::WebString& name,
const WebKit::WebIDBKeyPath& key_path,
« no previous file with comments | « content/common/indexed_db/proxy_webidbdatabase_impl.h ('k') | content/common/indexed_db/proxy_webidbindex_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698