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

Unified Diff: content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc

Issue 16256014: IndexedDB: Convert decoding functions to pass StringPieces vs. pointers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Correct bogus iterator dereference in unit test Created 7 years, 6 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: content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc b/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
index af86147a99f8cf3400f406abb459f5321e3495d1..4ee1c32a2fe124a1a394b7c303f6e6ea6d65fd7e 100644
--- a/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_cleanup_on_io_error_unittest.cc
@@ -29,7 +29,7 @@ class BustedLevelDBDatabase : public LevelDBDatabase {
return scoped_ptr<LevelDBDatabase>(new BustedLevelDBDatabase);
}
virtual bool Get(const LevelDBSlice& key,
- std::vector<char>& value,
+ std::string* value,
bool& found,
const LevelDBSnapshot* = 0) OVERRIDE {
// false means IO error.

Powered by Google App Engine
This is Rietveld 408576698