summaryrefslogtreecommitdiffstats
path: root/mojo/system/message_pipe_endpoint.cc
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-05 16:53:55 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-05 16:53:55 +0000
commit903c0d784baa38e805610af9312f7a326880835f (patch)
treeb090a6d968e4a14013f8278bfa59701a4af12a4b /mojo/system/message_pipe_endpoint.cc
parent09ca6472cc00f497246f384e0b0044910dad110f (diff)
downloadchromium_src-903c0d784baa38e805610af9312f7a326880835f.zip
chromium_src-903c0d784baa38e805610af9312f7a326880835f.tar.gz
chromium_src-903c0d784baa38e805610af9312f7a326880835f.tar.bz2
Mojo: Add/use |typedef std::vector<scoped_refptr<Dispatcher> > DispatcherVector.
R=darin@chromium.org Review URL: https://codereview.chromium.org/262093003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268204 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/system/message_pipe_endpoint.cc')
-rw-r--r--mojo/system/message_pipe_endpoint.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/mojo/system/message_pipe_endpoint.cc b/mojo/system/message_pipe_endpoint.cc
index a1a7be3..128313e 100644
--- a/mojo/system/message_pipe_endpoint.cc
+++ b/mojo/system/message_pipe_endpoint.cc
@@ -18,11 +18,11 @@ void MessagePipeEndpoint::CancelAllWaiters() {
NOTREACHED();
}
-MojoResult MessagePipeEndpoint::ReadMessage(
- void* /*bytes*/, uint32_t* /*num_bytes*/,
- std::vector<scoped_refptr<Dispatcher> >* /*dispatchers*/,
- uint32_t* /*num_dispatchers*/,
- MojoReadMessageFlags /*flags*/) {
+MojoResult MessagePipeEndpoint::ReadMessage(void* /*bytes*/,
+ uint32_t* /*num_bytes*/,
+ DispatcherVector* /*dispatchers*/,
+ uint32_t* /*num_dispatchers*/,
+ MojoReadMessageFlags /*flags*/) {
NOTREACHED();
return MOJO_RESULT_INTERNAL;
}