| Index: chrome/test/ui/javascript_test_util.cc
 | 
| diff --git a/chrome/test/ui/javascript_test_util.cc b/chrome/test/ui/javascript_test_util.cc
 | 
| index f2f7f7bb9c6876f31a0efbabf80869d958961f69..8f078095c4fc9fefba079821a331af1c89cc8e52 100644
 | 
| --- a/chrome/test/ui/javascript_test_util.cc
 | 
| +++ b/chrome/test/ui/javascript_test_util.cc
 | 
| @@ -15,7 +15,7 @@ bool JsonDictionaryToMap(const std::string& json,
 | 
|                           std::map<std::string, std::string>* results) {
 | 
|    DCHECK(results != NULL);
 | 
|    JSONStringValueSerializer deserializer(json);
 | 
| -  scoped_ptr<Value> root(deserializer.Deserialize(NULL));
 | 
| +  scoped_ptr<Value> root(deserializer.Deserialize(NULL, NULL));
 | 
|  
 | 
|    // Note that we don't use ASSERT_TRUE here (and in some other places) as it
 | 
|    // doesn't work inside a function with a return type other than void.
 | 
| 
 |