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 4773be550d69ed4dd1a3d75941a6588e815f6aba..04bfd9008bd156e9a5da91b44d6b29d20567d9a3 100644 |
--- a/components/dom_distiller/ios/distiller_page_ios.mm |
+++ b/components/dom_distiller/ios/distiller_page_ios.mm |
@@ -50,7 +50,7 @@ std::unique_ptr<base::Value> ValueResultFromScriptResult(id wk_result, |
CFTypeID result_type = CFGetTypeID(wk_result); |
if (result_type == CFStringGetTypeID()) { |
- result.reset(new base::StringValue(base::SysNSStringToUTF16(wk_result))); |
+ result.reset(new base::Value(base::SysNSStringToUTF16(wk_result))); |
DCHECK(result->IsType(base::Value::Type::STRING)); |
} else if (result_type == CFNumberGetTypeID()) { |
// Different implementation is here. |