| 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/bindings/lib/router.h" | 5 #include "mojo/public/cpp/bindings/lib/router.h" |
| 6 | 6 |
| 7 namespace mojo { | 7 namespace mojo { |
| 8 namespace internal { | 8 namespace internal { |
| 9 | 9 |
| 10 // ---------------------------------------------------------------------------- | 10 // ---------------------------------------------------------------------------- |
| 11 | 11 |
| 12 class ResponderThunk : public MessageReceiver { | 12 class ResponderThunk : public MessageReceiver { |
| 13 public: | 13 public: |
| 14 explicit ResponderThunk(const SharedData<Router*>& router) | 14 explicit ResponderThunk(const SharedData<Router*>& router) |
| 15 : router_(router) { | 15 : router_(router) { |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 // OK to drop message on the floor. | 128 // OK to drop message on the floor. |
| 129 } | 129 } |
| 130 | 130 |
| 131 return false; | 131 return false; |
| 132 } | 132 } |
| 133 | 133 |
| 134 // ---------------------------------------------------------------------------- | 134 // ---------------------------------------------------------------------------- |
| 135 | 135 |
| 136 } // namespace internal | 136 } // namespace internal |
| 137 } // namespace mojo | 137 } // namespace mojo |
| OLD | NEW |