| Index: chrome/test/automation/automation_json_requests.cc
|
| diff --git a/chrome/test/automation/automation_json_requests.cc b/chrome/test/automation/automation_json_requests.cc
|
| index ab0de317a05c72335a198dd4119fb645c6b642bc..e0df066cecb7781cf976ec836a4e2e9750f475ba 100644
|
| --- a/chrome/test/automation/automation_json_requests.cc
|
| +++ b/chrome/test/automation/automation_json_requests.cc
|
| @@ -546,7 +546,7 @@ bool SendDragAndDropFilePathsJSONRequest(
|
|
|
| ListValue* list_value = new ListValue();
|
| for (size_t path_index = 0; path_index < paths.size(); ++path_index) {
|
| - list_value->Append(Value::CreateStringValue(paths[path_index]));
|
| + list_value->Append(base::StringValue::New(paths[path_index]));
|
| }
|
| dict.Set("paths", list_value);
|
|
|
|
|