| Index: content/child/threaded_data_provider.cc
|
| diff --git a/content/child/threaded_data_provider.cc b/content/child/threaded_data_provider.cc
|
| index adf52cdb3540579ceda6a029283fe9c884ba0a5b..5d93a19c1b9e561807fbd7ebdb3f001be77e399e 100644
|
| --- a/content/child/threaded_data_provider.cc
|
| +++ b/content/child/threaded_data_provider.cc
|
| @@ -95,7 +95,7 @@ bool DataProviderMessageFilter::OnMessageReceived(
|
| if (request_id == request_id_) {
|
| ResourceMsg_DataReceived::Schema::Param arg;
|
| if (ResourceMsg_DataReceived::Read(&message, &arg)) {
|
| - OnReceivedData(arg.a, arg.b, arg.c, arg.d);
|
| + OnReceivedData(get<0>(arg), get<1>(arg), get<2>(arg), get<3>(arg));
|
| return true;
|
| }
|
| }
|
|
|