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

Unified Diff: sql/statement.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: sql/statement.cc
diff --git a/sql/statement.cc b/sql/statement.cc
index 7001d171ee36fc8e6b41248b424a4762b78cc33b..b3707c53dd39ebb6d49c4ed4918625880852e122 100644
--- a/sql/statement.cc
+++ b/sql/statement.cc
@@ -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;
« no previous file with comments | « remoting/host/setup/daemon_controller_delegate_linux.cc ('k') | sync/internal_api/public/base/attachment_id_proto.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698