Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: mojo/public/cpp/bindings/lib/associated_group.cc

Issue 1465293002: Mojo C++ bindings: introduce public associated-interface-related types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "mojo/public/cpp/bindings/associated_group.h"
6
7 #include "mojo/public/cpp/bindings/lib/multiplex_router.h"
8
9 namespace mojo {
10
11 AssociatedGroup::AssociatedGroup() {}
12
13 AssociatedGroup::AssociatedGroup(const AssociatedGroup& other)
14 : router_(other.router_) {}
15
16 AssociatedGroup::~AssociatedGroup() {}
17
18 AssociatedGroup& AssociatedGroup::operator=(const AssociatedGroup& other) {
19 if (this == &other)
20 return *this;
21
22 router_ = other.router_;
23 return *this;
24 }
25
26 void AssociatedGroup::CreateEndpointHandlePair(
27 internal::ScopedInterfaceEndpointHandle* local_endpoint,
28 internal::ScopedInterfaceEndpointHandle* remote_endpoint) {
29 if (!router_)
30 return;
31
32 router_->CreateEndpointHandlePair(local_endpoint, remote_endpoint);
33 }
34
35 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698