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/shell/public/cpp/lib/connection_impl.h" | 5 #include "services/shell/public/cpp/lib/connection_impl.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "mojo/shell/public/cpp/connection.h" | 13 #include "services/shell/public/cpp/connection.h" |
14 #include "mojo/shell/public/cpp/interface_binder.h" | 14 #include "services/shell/public/cpp/interface_binder.h" |
15 | 15 |
16 namespace mojo { | 16 namespace mojo { |
17 namespace internal { | 17 namespace internal { |
18 | 18 |
19 //////////////////////////////////////////////////////////////////////////////// | 19 //////////////////////////////////////////////////////////////////////////////// |
20 // ConnectionImpl, public: | 20 // ConnectionImpl, public: |
21 | 21 |
22 ConnectionImpl::ConnectionImpl( | 22 ConnectionImpl::ConnectionImpl( |
23 const std::string& connection_name, | 23 const std::string& connection_name, |
24 const Identity& remote, | 24 const Identity& remote, |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 remote_id_ = target_application_id; | 119 remote_id_ = target_application_id; |
120 remote_.set_user_id(target_user_id); | 120 remote_.set_user_id(target_user_id); |
121 std::vector<Closure> callbacks; | 121 std::vector<Closure> callbacks; |
122 callbacks.swap(connection_completed_callbacks_); | 122 callbacks.swap(connection_completed_callbacks_); |
123 for (auto callback : callbacks) | 123 for (auto callback : callbacks) |
124 callback.Run(); | 124 callback.Run(); |
125 } | 125 } |
126 | 126 |
127 } // namespace internal | 127 } // namespace internal |
128 } // namespace mojo | 128 } // namespace mojo |
OLD | NEW |