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

Unified Diff: sql/statement.cc

Issue 2133173003: Minor fixes in login_database.* and sql/statement.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typos Created 4 years, 5 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 | « sql/statement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/statement.cc
diff --git a/sql/statement.cc b/sql/statement.cc
index 1502b09f5e3a834300c48d5a83dbd3cbe7a342cb..5778fd0d7daf930b06698e2c632a985e4d254148 100644
--- a/sql/statement.cc
+++ b/sql/statement.cc
@@ -294,7 +294,7 @@ const void* Statement::ColumnBlob(int col) const {
return sqlite3_column_blob(ref_->stmt(), col);
}
-bool Statement::ColumnBlobAsString(int col, std::string* blob) {
+bool Statement::ColumnBlobAsString(int col, std::string* blob) const {
if (!CheckValid())
return false;
« no previous file with comments | « sql/statement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698