| 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 #ifndef MOJO_COMMON_WEAK_BINDING_SET_H_ | 5 #ifndef MOJO_COMMON_WEAK_BINDING_SET_H_ |
| 6 #define MOJO_COMMON_WEAK_BINDING_SET_H_ | 6 #define MOJO_COMMON_WEAK_BINDING_SET_H_ |
| 7 | 7 |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 | 36 |
| 37 void CloseAllBindings() { | 37 void CloseAllBindings() { |
| 38 for (const auto& it : bindings_) { | 38 for (const auto& it : bindings_) { |
| 39 if (it) | 39 if (it) |
| 40 it->Close(); | 40 it->Close(); |
| 41 } | 41 } |
| 42 bindings_.clear(); | 42 bindings_.clear(); |
| 43 } | 43 } |
| 44 | 44 |
| 45 bool empty() const { return bindings_.empty(); } |
| 46 |
| 45 private: | 47 private: |
| 46 // ErrorHandler implementation. | 48 // ErrorHandler implementation. |
| 47 void OnConnectionError() override { | 49 void OnConnectionError() override { |
| 48 // Clear any deleted bindings. | 50 // Clear any deleted bindings. |
| 49 bindings_.erase( | 51 bindings_.erase( |
| 50 std::remove_if(bindings_.begin(), bindings_.end(), | 52 std::remove_if(bindings_.begin(), bindings_.end(), |
| 51 [](const base::WeakPtr<WeakBinding<Interface>>& p) { | 53 [](const base::WeakPtr<WeakBinding<Interface>>& p) { |
| 52 return p.get() == nullptr; | 54 return p.get() == nullptr; |
| 53 }), | 55 }), |
| 54 bindings_.end()); | 56 bindings_.end()); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 mojo::Binding<Interface> binding_; | 99 mojo::Binding<Interface> binding_; |
| 98 ErrorHandler* error_handler_; | 100 ErrorHandler* error_handler_; |
| 99 base::WeakPtrFactory<WeakBinding> weak_ptr_factory_; | 101 base::WeakPtrFactory<WeakBinding> weak_ptr_factory_; |
| 100 | 102 |
| 101 DISALLOW_COPY_AND_ASSIGN(WeakBinding); | 103 DISALLOW_COPY_AND_ASSIGN(WeakBinding); |
| 102 }; | 104 }; |
| 103 | 105 |
| 104 } // namespace mojo | 106 } // namespace mojo |
| 105 | 107 |
| 106 #endif // MOJO_COMMON_WEAK_BINDING_SET_H_ | 108 #endif // MOJO_COMMON_WEAK_BINDING_SET_H_ |
| OLD | NEW |