summaryrefslogtreecommitdiffstats
path: root/chrome/browser/android/contextualsearch/contextual_search_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/android/contextualsearch/contextual_search_delegate.cc')
-rw-r--r--chrome/browser/android/contextualsearch/contextual_search_delegate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/android/contextualsearch/contextual_search_delegate.cc b/chrome/browser/android/contextualsearch/contextual_search_delegate.cc
index e690b02..637c532 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 =