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

Unified Diff: chrome/renderer/renderer_webidbdatabase_impl.cc

Issue 3134029: Fix IDBDatabase::removeObjectStore for multiprocess mode (Closed)
Patch Set: Created 10 years, 4 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 | « chrome/renderer/renderer_webidbdatabase_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/renderer_webidbdatabase_impl.cc
diff --git a/chrome/renderer/renderer_webidbdatabase_impl.cc b/chrome/renderer/renderer_webidbdatabase_impl.cc
index 7bfaf5c085b8c7f86d0e95717bfe6ba2572e5848..0c69d856f29db6fd36164286758a484496449077 100644
--- a/chrome/renderer/renderer_webidbdatabase_impl.cc
+++ b/chrome/renderer/renderer_webidbdatabase_impl.cc
@@ -70,6 +70,14 @@ void RendererWebIDBDatabaseImpl::createObjectStore(
name, key_path, auto_increment, callbacks, idb_database_id_);
}
+void RendererWebIDBDatabaseImpl::removeObjectStore(
+ const WebString& name, WebIDBCallbacks* callbacks) {
+ IndexedDBDispatcher* dispatcher =
+ RenderThread::current()->indexed_db_dispatcher();
+ dispatcher->RequestIDBDatabaseRemoveObjectStore(
+ name, callbacks, idb_database_id_);
+}
+
WebKit::WebIDBTransaction* RendererWebIDBDatabaseImpl::transaction(
const WebDOMStringList& names, unsigned short mode,
unsigned long timeout) {
« no previous file with comments | « chrome/renderer/renderer_webidbdatabase_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698