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

Unified Diff: webkit/appcache/appcache_database_unittest.cc

Issue 10171014: Changed to Reset(bool clear_bound_vars) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac build error. Created 8 years, 8 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 | « webkit/appcache/appcache_database.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_database_unittest.cc
diff --git a/webkit/appcache/appcache_database_unittest.cc b/webkit/appcache/appcache_database_unittest.cc
index 014a56935da4382ff37f13d1364be80b75b59b37..c66472da3ad9ec641654c70675a51c01ef1cd634 100644
--- a/webkit/appcache/appcache_database_unittest.cc
+++ b/webkit/appcache/appcache_database_unittest.cc
@@ -790,7 +790,7 @@ TEST(AppCacheDatabaseTest, UpgradeSchema3to4) {
statement.BindString(2, namespace_url.spec().c_str());
statement.BindString(3, target_url.spec().c_str());
ASSERT_TRUE(statement.Run());
- statement.Reset();
+ statement.Reset(true);
}
EXPECT_TRUE(transaction.Commit());
« no previous file with comments | « webkit/appcache/appcache_database.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698