Index: chrome/browser/android/contextualsearch/contextual_search_delegate.cc |
diff --git a/chrome/browser/android/contextualsearch/contextual_search_delegate.cc b/chrome/browser/android/contextualsearch/contextual_search_delegate.cc |
index e690b02b80e778d1462017b5d03c8edb518d644d..637c532850e22c13d2b1df7be0a528cfb31a3f69 100644 |
--- a/chrome/browser/android/contextualsearch/contextual_search_delegate.cc |
+++ b/chrome/browser/android/contextualsearch/contextual_search_delegate.cc |
@@ -429,7 +429,7 @@ void ContextualSearchDelegate::DecodeSearchTermsFromJsonResponse( |
const std::string& proper_json = |
contains_xssi_escape ? response.substr(strlen(kXssiEscape)) : response; |
JSONStringValueDeserializer deserializer(proper_json); |
- scoped_ptr<base::Value> root(deserializer.Deserialize(NULL, NULL)); |
+ scoped_ptr<base::Value> root = deserializer.Deserialize(NULL, NULL); |
if (root.get() != NULL && root->IsType(base::Value::TYPE_DICTIONARY)) { |
base::DictionaryValue* dict = |