| Index: mojo/system/core.cc
|
| diff --git a/mojo/system/core.cc b/mojo/system/core.cc
|
| index dd8fb573c2c5e6910347e7be8a8133286756e85b..49f0a9c0c68bc880b7d8717585f86c04928cb4d2 100644
|
| --- a/mojo/system/core.cc
|
| +++ b/mojo/system/core.cc
|
| @@ -269,7 +269,7 @@ MojoResult Core::ReadMessage(MojoHandle message_pipe_handle,
|
| if (!num_handles || *num_handles == 0)
|
| return dispatcher->ReadMessage(bytes, num_bytes, NULL, num_handles, flags);
|
|
|
| - std::vector<scoped_refptr<Dispatcher> > dispatchers;
|
| + DispatcherVector dispatchers;
|
| MojoResult rv = dispatcher->ReadMessage(bytes, num_bytes,
|
| &dispatchers, num_handles,
|
| flags);
|
| @@ -537,7 +537,7 @@ MojoResult Core::WaitManyInternal(const MojoHandle* handles,
|
| MojoDeadline deadline) {
|
| DCHECK_GT(num_handles, 0u);
|
|
|
| - std::vector<scoped_refptr<Dispatcher> > dispatchers;
|
| + DispatcherVector dispatchers;
|
| dispatchers.reserve(num_handles);
|
| for (uint32_t i = 0; i < num_handles; i++) {
|
| scoped_refptr<Dispatcher> dispatcher = GetDispatcher(handles[i]);
|
|
|