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

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

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
« no previous file with comments | « no previous file | content/child/indexed_db/proxy_webidbfactory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/indexed_db/proxy_webidbfactory_impl.h
diff --git a/content/child/indexed_db/proxy_webidbfactory_impl.h b/content/child/indexed_db/proxy_webidbfactory_impl.h
index 3e10c695c5f757b6e3ceb53faf57735fbb806918..9b7852d3ace9c74f1ceed5afa3e749a0228946dd 100644
--- a/content/child/indexed_db/proxy_webidbfactory_impl.h
+++ b/content/child/indexed_db/proxy_webidbfactory_impl.h
@@ -26,21 +26,18 @@ class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory {
// See WebIDBFactory.h for documentation on these functions.
virtual void getDatabaseNames(
WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
+ const WebKit::WebString& database_identifier);
virtual void open(
const WebKit::WebString& name,
long long version,
long long transaction_id,
WebKit::WebIDBCallbacks* callbacks,
WebKit::WebIDBDatabaseCallbacks* databaseCallbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
+ const WebKit::WebString& database_identifier);
virtual void deleteDatabase(
const WebKit::WebString& name,
WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
+ const WebKit::WebString& database_identifier);
private:
scoped_refptr<ThreadSafeSender> thread_safe_sender_;
« no previous file with comments | « no previous file | content/child/indexed_db/proxy_webidbfactory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698