| 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 #ifndef MOJO_SYSTEM_PROXY_MESSAGE_PIPE_ENDPOINT_H_ | 5 #ifndef MOJO_SYSTEM_PROXY_MESSAGE_PIPE_ENDPOINT_H_ |
| 6 #define MOJO_SYSTEM_PROXY_MESSAGE_PIPE_ENDPOINT_H_ | 6 #define MOJO_SYSTEM_PROXY_MESSAGE_PIPE_ENDPOINT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | |
| 9 | |
| 10 #include "base/macros.h" | 8 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 12 #include "mojo/system/message_in_transit.h" | 10 #include "mojo/system/message_in_transit.h" |
| 13 #include "mojo/system/message_in_transit_queue.h" | 11 #include "mojo/system/message_in_transit_queue.h" |
| 14 #include "mojo/system/message_pipe_endpoint.h" | 12 #include "mojo/system/message_pipe_endpoint.h" |
| 15 #include "mojo/system/system_impl_export.h" | 13 #include "mojo/system/system_impl_export.h" |
| 16 | 14 |
| 17 namespace mojo { | 15 namespace mojo { |
| 18 namespace system { | 16 namespace system { |
| 19 | 17 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 // not ready to send them yet. | 74 // not ready to send them yet. |
| 77 MessageInTransitQueue paused_message_queue_; | 75 MessageInTransitQueue paused_message_queue_; |
| 78 | 76 |
| 79 DISALLOW_COPY_AND_ASSIGN(ProxyMessagePipeEndpoint); | 77 DISALLOW_COPY_AND_ASSIGN(ProxyMessagePipeEndpoint); |
| 80 }; | 78 }; |
| 81 | 79 |
| 82 } // namespace system | 80 } // namespace system |
| 83 } // namespace mojo | 81 } // namespace mojo |
| 84 | 82 |
| 85 #endif // MOJO_SYSTEM_PROXY_MESSAGE_PIPE_ENDPOINT_H_ | 83 #endif // MOJO_SYSTEM_PROXY_MESSAGE_PIPE_ENDPOINT_H_ |
| OLD | NEW |