| Index: chrome/browser/extensions/api/messaging/message_property_provider.cc
|
| diff --git a/chrome/browser/extensions/api/messaging/message_property_provider.cc b/chrome/browser/extensions/api/messaging/message_property_provider.cc
|
| index 1d6603b041dcc0b85bc4812cced0c1c3704b60f7..29f0e177e6f764a5b7e32e5eb666a58173fc5bdd 100644
|
| --- a/chrome/browser/extensions/api/messaging/message_property_provider.cc
|
| +++ b/chrome/browser/extensions/api/messaging/message_property_provider.cc
|
| @@ -48,7 +48,7 @@ void MessagePropertyProvider::GetChannelID(Profile* profile,
|
| // MessagePropertyProvider::GetChannelID.
|
| struct MessagePropertyProvider::GetChannelIDOutput {
|
| scoped_ptr<crypto::ECPrivateKey> channel_id_key;
|
| - net::ChannelIDService::RequestHandle request_handle;
|
| + net::ChannelIDService::Request request;
|
| };
|
|
|
| // static
|
| @@ -69,7 +69,7 @@ void MessagePropertyProvider::GetChannelIDOnIOThread(
|
| reply);
|
| int status = channel_id_service->GetChannelID(host, &output->channel_id_key,
|
| net_completion_callback,
|
| - &output->request_handle);
|
| + &output->request);
|
| if (status == net::ERR_IO_PENDING)
|
| return;
|
| GotChannelID(original_task_runner, output, reply, status);
|
|
|