Index: chrome/test/ui/javascript_test_util.cc |
=================================================================== |
--- chrome/test/ui/javascript_test_util.cc (revision 32858) |
+++ chrome/test/ui/javascript_test_util.cc (working copy) |
@@ -29,10 +29,10 @@ |
DictionaryValue* dict = static_cast<DictionaryValue*>(root.get()); |
- DictionaryValue::key_iterator it = dict->begin_keys(); |
- for (; it != dict->end_keys(); ++it) { |
+ for (DictionaryValue::key_iterator it = dict->begin_keys(); |
+ it != dict->end_keys(); ++it) { |
Value* value = NULL; |
- bool succeeded = dict->Get(*it, &value); |
+ bool succeeded = dict->GetWithoutPathExpansion(*it, &value); |
EXPECT_TRUE(succeeded); |
if (!succeeded) |