Chromium Code Reviews| Index: webkit/database/quota_table.cc |
| diff --git a/webkit/database/quota_table.cc b/webkit/database/quota_table.cc |
| index 2845b08172d0bf1bac092d40ed8122c9cd44dd83..9f49200f38c096818a18b247ac12f0938a640058 100644 |
| --- a/webkit/database/quota_table.cc |
| +++ b/webkit/database/quota_table.cc |
| @@ -25,7 +25,6 @@ int64 QuotaTable::GetOriginQuota(const string16& origin_identifier) { |
| sql::Statement statement(db_->GetCachedStatement( |
| SQL_FROM_HERE, "SELECT quota FROM Quota WHERE origin = ?")); |
| statement.BindString16(0, origin_identifier); |
| - |
|
Scott Hess - ex-Googler
2012/02/13 22:04:04
Likewise with these whitespace changes.
|
| if (statement.Step()) { |
| return statement.ColumnInt64(0); |
| } |
| @@ -42,7 +41,6 @@ bool QuotaTable::SetOriginQuota(const string16& origin_identifier, |
| SQL_FROM_HERE, "REPLACE INTO Quota VALUES (?, ?)")); |
| replace_statement.BindString16(0, origin_identifier); |
| replace_statement.BindInt64(1, quota); |
| - |
| return replace_statement.Run(); |
| } |