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

Unified Diff: chrome/browser/webdata/web_database_unittest.cc

Issue 441008: Many changes to DictionaryValues:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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: chrome/browser/webdata/web_database_unittest.cc
===================================================================
--- chrome/browser/webdata/web_database_unittest.cc (revision 32858)
+++ chrome/browser/webdata/web_database_unittest.cc (working copy)
@@ -57,8 +57,8 @@
DictionaryValue::key_iterator e(a.end_keys());
std::wstring av, bv;
while (i != e) {
- if (!(a.GetString(*i, &av)) ||
- !(b.GetString(*i, &bv)) ||
+ if (!(a.GetStringWithoutPathExpansion(*i, &av)) ||
+ !(b.GetStringWithoutPathExpansion(*i, &bv)) ||
av != bv)
return false;

Powered by Google App Engine
This is Rietveld 408576698