Index: sql/statement.h |
diff --git a/sql/statement.h b/sql/statement.h |
index acf89e707fef0c0f9f571ad3a29bf64616fcdda7..e192e60725192b2f44b174c48c26911898b73877 100644 |
--- a/sql/statement.h |
+++ b/sql/statement.h |
@@ -108,7 +108,7 @@ class SQL_EXPORT Statement { |
bool BindDouble(int col, double val); |
bool BindCString(int col, const char* val); |
bool BindString(int col, const std::string& val); |
- bool BindString16(int col, const string16& value); |
+ bool BindString16(int col, const base::string16& value); |
bool BindBlob(int col, const void* value, int value_len); |
// Retrieving ---------------------------------------------------------------- |
@@ -131,7 +131,7 @@ class SQL_EXPORT Statement { |
int64 ColumnInt64(int col) const; |
double ColumnDouble(int col) const; |
std::string ColumnString(int col) const; |
- string16 ColumnString16(int col) const; |
+ base::string16 ColumnString16(int col) const; |
// When reading a blob, you can get a raw pointer to the underlying data, |
// along with the length, or you can just ask us to copy the blob into a |
@@ -139,7 +139,7 @@ class SQL_EXPORT Statement { |
int ColumnByteLength(int col) const; |
const void* ColumnBlob(int col) const; |
bool ColumnBlobAsString(int col, std::string* blob); |
- bool ColumnBlobAsString16(int col, string16* val) const; |
+ bool ColumnBlobAsString16(int col, base::string16* val) const; |
bool ColumnBlobAsVector(int col, std::vector<char>* val) const; |
bool ColumnBlobAsVector(int col, std::vector<unsigned char>* val) const; |