Chromium Code Reviews

Unified Diff: mojo/edk/system/handle_table.cc

Issue 1947733002: EDK: Rename DispatcherTransport to HandleTransport. (Closed) Base URL: https://github.com/domokit/mojo.git@work790_edk_handle_11-x-work788_edk_handle_10
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « mojo/edk/system/handle_table.h ('k') | mojo/edk/system/handle_transport.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/handle_table.cc
diff --git a/mojo/edk/system/handle_table.cc b/mojo/edk/system/handle_table.cc
index 133b653bbb6dac1688b614cf2e5874db376f06c9..90da427fed3afc9b588c04fd62b84a271b2f42ac 100644
--- a/mojo/edk/system/handle_table.cc
+++ b/mojo/edk/system/handle_table.cc
@@ -113,7 +113,7 @@ MojoResult HandleTable::MarkBusyAndStartTransport(
MojoHandle disallowed_handle,
const MojoHandle* handle_values,
uint32_t num_handles,
- std::vector<DispatcherTransport>* transports) {
+ std::vector<HandleTransport>* transports) {
DCHECK_NE(disallowed_handle, MOJO_HANDLE_INVALID);
DCHECK(handle_values);
DCHECK_LE(num_handles, GetConfiguration().max_message_num_handles);
@@ -149,7 +149,7 @@ MojoResult HandleTable::MarkBusyAndStartTransport(
entries[i]->busy = true;
// Try to start the transport.
- DispatcherTransport transport =
+ HandleTransport transport =
Dispatcher::HandleTableAccess::TryStartTransport(entries[i]->handle);
if (!transport.is_valid()) {
// Only log for Debug builds, since this is not a problem with the system
« no previous file with comments | « mojo/edk/system/handle_table.h ('k') | mojo/edk/system/handle_transport.h » ('j') | no next file with comments »

Powered by Google App Engine