| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/public/cpp/bindings/lib/router.h" | 5 #include "mojo/public/cpp/bindings/lib/router.h" |
| 6 | 6 |
| 7 #include <stdint.h> |
| 8 |
| 7 #include "mojo/public/cpp/environment/logging.h" | 9 #include "mojo/public/cpp/environment/logging.h" |
| 8 | 10 |
| 9 namespace mojo { | 11 namespace mojo { |
| 10 namespace internal { | 12 namespace internal { |
| 11 | 13 |
| 12 // ---------------------------------------------------------------------------- | 14 // ---------------------------------------------------------------------------- |
| 13 | 15 |
| 14 namespace { | 16 namespace { |
| 15 | 17 |
| 16 class ResponderThunk : public MessageReceiverWithStatus { | 18 class ResponderThunk : public MessageReceiverWithStatus { |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 return false; | 155 return false; |
| 154 | 156 |
| 155 return incoming_receiver_->Accept(message); | 157 return incoming_receiver_->Accept(message); |
| 156 } | 158 } |
| 157 } | 159 } |
| 158 | 160 |
| 159 // ---------------------------------------------------------------------------- | 161 // ---------------------------------------------------------------------------- |
| 160 | 162 |
| 161 } // namespace internal | 163 } // namespace internal |
| 162 } // namespace mojo | 164 } // namespace mojo |
| OLD | NEW |