Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / sql / statement.cc
index 7001d17..b3707c5 100644 (file)
@@ -182,7 +182,7 @@ ColType Statement::ColumnType(int col) const {
 
 ColType Statement::DeclaredColumnType(int col) const {
   std::string column_type(sqlite3_column_decltype(ref_->stmt(), col));
-  StringToLowerASCII(&column_type);
+  base::StringToLowerASCII(&column_type);
 
   if (column_type == "integer")
     return COLUMN_TYPE_INTEGER;