| Index: components/dom_distiller/ios/distiller_page_ios.mm
|
| diff --git a/components/dom_distiller/ios/distiller_page_ios.mm b/components/dom_distiller/ios/distiller_page_ios.mm
|
| index c4859afc76c8a0aa8896ae17aaf119cbd8914798..8f2e29ddb1392982f24430fa4d675a1568c8d1a8 100644
|
| --- a/components/dom_distiller/ios/distiller_page_ios.mm
|
| +++ b/components/dom_distiller/ios/distiller_page_ios.mm
|
| @@ -111,8 +111,8 @@ void DistillerPageIOS::OnLoadURLDone(
|
| void DistillerPageIOS::HandleJavaScriptResultString(NSString* result) {
|
| scoped_ptr<base::Value> resultValue = base::Value::CreateNullValue();
|
| if (result.length) {
|
| - scoped_ptr<base::Value> dictionaryValue(
|
| - base::JSONReader::DeprecatedRead(base::SysNSStringToUTF8(result)));
|
| + scoped_ptr<base::Value> dictionaryValue =
|
| + base::JSONReader::Read(base::SysNSStringToUTF8(result));
|
| if (dictionaryValue &&
|
| dictionaryValue->IsType(base::Value::TYPE_DICTIONARY)) {
|
| resultValue = dictionaryValue.Pass();
|
|
|