| Index: content/browser/android/java/gin_java_script_to_java_types_coercion.cc
|
| diff --git a/content/browser/android/java/gin_java_script_to_java_types_coercion.cc b/content/browser/android/java/gin_java_script_to_java_types_coercion.cc
|
| index cb4e51776b4b507091e1c28590e3def02039e5fe..84b2070366a003ec6fcfaec63f2061d50fd4cc28 100644
|
| --- a/content/browser/android/java/gin_java_script_to_java_types_coercion.cc
|
| +++ b/content/browser/android/java/gin_java_script_to_java_types_coercion.cc
|
| @@ -460,7 +460,7 @@ jobject CoerceJavaScriptListToArray(JNIEnv* env,
|
| if (!result) {
|
| return NULL;
|
| }
|
| - scoped_ptr<base::Value> null_value(base::Value::CreateNullValue());
|
| + scoped_ptr<base::Value> null_value = base::Value::CreateNullValue();
|
| for (jsize i = 0; i < length; ++i) {
|
| const base::Value* value_element = null_value.get();
|
| list_value->Get(i, &value_element);
|
| @@ -531,7 +531,7 @@ jobject CoerceJavaScriptDictionaryToArray(JNIEnv* env,
|
| if (!result) {
|
| return NULL;
|
| }
|
| - scoped_ptr<base::Value> null_value(base::Value::CreateNullValue());
|
| + scoped_ptr<base::Value> null_value = base::Value::CreateNullValue();
|
| for (jsize i = 0; i < length; ++i) {
|
| const std::string key(base::IntToString(i));
|
| const base::Value* value_element = null_value.get();
|
|
|