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

Unified Diff: content/child/indexed_db/proxy_webidbfactory_impl.cc

Issue 17642005: Remove unused arguments from storage-related Chromium impls of Blink API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased after r208825 Created 7 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/child/indexed_db/proxy_webidbfactory_impl.cc
diff --git a/content/child/indexed_db/proxy_webidbfactory_impl.cc b/content/child/indexed_db/proxy_webidbfactory_impl.cc
index 720aae3d7b6cc08501afd28e8653c70b3e6754db..236a156a0dea49f927c17fb6b47685c39667fc43 100644
--- a/content/child/indexed_db/proxy_webidbfactory_impl.cc
+++ b/content/child/indexed_db/proxy_webidbfactory_impl.cc
@@ -26,8 +26,7 @@ RendererWebIDBFactoryImpl::~RendererWebIDBFactoryImpl() {
void RendererWebIDBFactoryImpl::getDatabaseNames(
WebIDBCallbacks* callbacks,
- const WebString& database_identifier,
- const WebString& data_dir_unused) {
+ const WebString& database_identifier) {
IndexedDBDispatcher* dispatcher =
IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_);
dispatcher->RequestIDBFactoryGetDatabaseNames(
@@ -40,10 +39,7 @@ void RendererWebIDBFactoryImpl::open(
long long transaction_id,
WebIDBCallbacks* callbacks,
WebIDBDatabaseCallbacks* database_callbacks,
- const WebString& database_identifier,
- const WebString& data_dir) {
- // Don't send the data_dir. We know what we want on the Browser side of
- // things.
+ const WebString& database_identifier) {
IndexedDBDispatcher* dispatcher =
IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_);
dispatcher->RequestIDBFactoryOpen(
@@ -54,10 +50,7 @@ void RendererWebIDBFactoryImpl::open(
void RendererWebIDBFactoryImpl::deleteDatabase(
const WebString& name,
WebIDBCallbacks* callbacks,
- const WebString& database_identifier,
- const WebString& data_dir) {
- // Don't send the data_dir. We know what we want on the Browser side of
- // things.
+ const WebString& database_identifier) {
IndexedDBDispatcher* dispatcher =
IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_);
dispatcher->RequestIDBFactoryDeleteDatabase(
« no previous file with comments | « content/child/indexed_db/proxy_webidbfactory_impl.h ('k') | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698