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

Unified Diff: webkit/database/databases_table.h

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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: webkit/database/databases_table.h
diff --git a/webkit/database/databases_table.h b/webkit/database/databases_table.h
index d7a25817d4211f6e09ecacc74f2145e1e7821046..c31e720f625926ffcde5d965189e64d1e41af912 100644
--- a/webkit/database/databases_table.h
+++ b/webkit/database/databases_table.h
@@ -7,7 +7,7 @@
#include <vector>
-#include "base/string16.h"
+#include "base/string16.h.h"
#include "webkit/storage/webkit_storage_export.h"
namespace sql {
@@ -20,9 +20,9 @@ struct WEBKIT_STORAGE_EXPORT_PRIVATE DatabaseDetails {
DatabaseDetails();
~DatabaseDetails();
- string16 origin_identifier;
- string16 database_name;
- string16 description;
+ base::string16 origin_identifier;
+ base::string16 database_name;
+ base::string16 description;
int64 estimated_size;
};
@@ -31,19 +31,19 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE DatabasesTable {
explicit DatabasesTable(sql::Connection* db) : db_(db) { }
bool Init();
- int64 GetDatabaseID(const string16& origin_identifier,
- const string16& database_name);
- bool GetDatabaseDetails(const string16& origin_identifier,
- const string16& database_name,
+ int64 GetDatabaseID(const base::string16& origin_identifier,
+ const base::string16& database_name);
+ bool GetDatabaseDetails(const base::string16& origin_identifier,
+ const base::string16& database_name,
DatabaseDetails* details);
bool InsertDatabaseDetails(const DatabaseDetails& details);
bool UpdateDatabaseDetails(const DatabaseDetails& details);
- bool DeleteDatabaseDetails(const string16& origin_identifier,
- const string16& database_name);
- bool GetAllOrigins(std::vector<string16>* origins);
- bool GetAllDatabaseDetailsForOrigin(const string16& origin_identifier,
+ bool DeleteDatabaseDetails(const base::string16& origin_identifier,
+ const base::string16& database_name);
+ bool GetAllOrigins(std::vector<base::string16>* origins);
+ bool GetAllDatabaseDetailsForOrigin(const base::string16& origin_identifier,
std::vector<DatabaseDetails>* details);
- bool DeleteOrigin(const string16& origin_identifier);
+ bool DeleteOrigin(const base::string16& origin_identifier);
private:
sql::Connection* db_;
};

Powered by Google App Engine
This is Rietveld 408576698