| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/edk/system/core.h" | 5 #include "mojo/edk/system/core.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include <utility> | 10 #include <utility> |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 10 #include "base/containers/stack_container.h" | 13 #include "base/containers/stack_container.h" |
| 11 #include "base/logging.h" | 14 #include "base/logging.h" |
| 12 #include "base/rand_util.h" | 15 #include "base/rand_util.h" |
| 13 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 14 #include "mojo/edk/embedder/embedder_internal.h" | 17 #include "mojo/edk/embedder/embedder_internal.h" |
| 15 #include "mojo/edk/embedder/platform_channel_pair.h" | 18 #include "mojo/edk/embedder/platform_channel_pair.h" |
| 16 #include "mojo/edk/embedder/platform_shared_buffer.h" | 19 #include "mojo/edk/embedder/platform_shared_buffer.h" |
| (...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 if (signals_states) { | 700 if (signals_states) { |
| 698 for (; i < num_handles; i++) | 701 for (; i < num_handles; i++) |
| 699 signals_states[i] = dispatchers[i]->GetHandleSignalsState(); | 702 signals_states[i] = dispatchers[i]->GetHandleSignalsState(); |
| 700 } | 703 } |
| 701 | 704 |
| 702 return rv; | 705 return rv; |
| 703 } | 706 } |
| 704 | 707 |
| 705 } // namespace edk | 708 } // namespace edk |
| 706 } // namespace mojo | 709 } // namespace mojo |
| OLD | NEW |