aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/filters/client_channel/lb_policy.h
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-07-12 17:42:36 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2018-07-12 17:42:36 -0700
commit82e9cb66ffb3fa3b7dc151efa056ded997186a59 (patch)
tree8dac3a46e9f55565f30631b823bc6c1ecf42ef67 /src/core/ext/filters/client_channel/lb_policy.h
parent25082c5fc47d0b337657476a0fa7ce989b9712ef (diff)
Reviewer feedback; move lists to children
Diffstat (limited to 'src/core/ext/filters/client_channel/lb_policy.h')
-rw-r--r--src/core/ext/filters/client_channel/lb_policy.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/ext/filters/client_channel/lb_policy.h b/src/core/ext/filters/client_channel/lb_policy.h
index e756c89208..d525721ec0 100644
--- a/src/core/ext/filters/client_channel/lb_policy.h
+++ b/src/core/ext/filters/client_channel/lb_policy.h
@@ -180,9 +180,6 @@ class LoadBalancingPolicy
grpc_client_channel_factory* client_channel_factory() const {
return client_channel_factory_;
}
- gpr_mu* child_refs_mu() { return &child_refs_mu_; }
- ChildRefsList* child_subchannels() { return &child_subchannels_; }
- ChildRefsList* child_channels() { return &child_channels_; }
/// Shuts down the policy. Any pending picks that have not been
/// handed off to a new policy via HandOffPendingPicksLocked() will be
@@ -202,11 +199,6 @@ class LoadBalancingPolicy
/// Combiner under which LB policy actions take place.
grpc_combiner* combiner_;
- /// Lock and data used to capture snapshots of this channels child
- /// channels and subchannels. This data is consumed by channelz.
- gpr_mu child_refs_mu_;
- ChildRefsList child_subchannels_;
- ChildRefsList child_channels_;
/// Client channel factory, used to create channels and subchannels.
grpc_client_channel_factory* client_channel_factory_;
/// Owned pointer to interested parties in load balancing decisions.