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

Unified Diff: content/browser/indexed_db/webidbfactory_impl.h

Issue 17915004: IndexedDB: Remove uses of WebKit API types from back-end code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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 | « content/browser/indexed_db/webidbdatabase_impl.cc ('k') | content/browser/indexed_db/webidbfactory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/indexed_db/webidbfactory_impl.h
diff --git a/content/browser/indexed_db/webidbfactory_impl.h b/content/browser/indexed_db/webidbfactory_impl.h
index a2340b758aebe5e2418bc8c91a893417d030b825..6afe380fa5eee02732e36c9a9612f33c8b685ff4 100644
--- a/content/browser/indexed_db/webidbfactory_impl.h
+++ b/content/browser/indexed_db/webidbfactory_impl.h
@@ -6,10 +6,7 @@
#define CONTENT_BROWSER_INDEXED_DB_WEBIDBFACTORY_IMPL_H_
#include "base/memory/ref_counted.h"
-
-namespace WebKit {
-class WebString;
-}
+#include "base/strings/string16.h"
namespace content {
@@ -23,19 +20,19 @@ class WebIDBFactoryImpl {
virtual ~WebIDBFactoryImpl();
virtual void getDatabaseNames(IndexedDBCallbacksBase* callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
- virtual void open(const WebKit::WebString& name,
+ const string16& database_identifier,
+ const string16& data_dir);
+ virtual void open(const string16& name,
long long version,
long long transaction_id,
IndexedDBCallbacksBase* callbacks,
IndexedDBDatabaseCallbacks* database_callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
- virtual void deleteDatabase(const WebKit::WebString& name,
+ const string16& database_identifier,
+ const string16& data_dir);
+ virtual void deleteDatabase(const string16& name,
IndexedDBCallbacksBase* callbacks,
- const WebKit::WebString& database_identifier,
- const WebKit::WebString& data_dir);
+ const string16& database_identifier,
+ const string16& data_dir);
private:
scoped_refptr<IndexedDBFactory> idb_factory_backend_;
« no previous file with comments | « content/browser/indexed_db/webidbdatabase_impl.cc ('k') | content/browser/indexed_db/webidbfactory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698