Index: content/renderer/manifest/manifest_parser.cc |
diff --git a/content/renderer/manifest/manifest_parser.cc b/content/renderer/manifest/manifest_parser.cc |
index 62a5223b79bd4deec24af18f282caf5803b81fd4..163d3432cfa698c30e994a2a9057418563e42ce3 100644 |
--- a/content/renderer/manifest/manifest_parser.cc |
+++ b/content/renderer/manifest/manifest_parser.cc |
@@ -54,7 +54,7 @@ |
namespace content { |
Manifest ManifestParser::Parse(const base::StringPiece& json) { |
- scoped_ptr<base::Value> value = base::JSONReader::Read(json); |
+ base::Value* value = base::JSONReader::Read(json); |
if (!value) { |
// TODO(mlamouri): get the JSON parsing error and report it to the developer |
// console. |