aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/filters/client_channel/client_channel_plugin.cc
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2018-02-20 08:33:48 -0800
committerGravatar Mark D. Roth <roth@google.com>2018-02-20 08:33:48 -0800
commitc887549f9296d893957c6df17deaf5e2c6f4f633 (patch)
tree79e4d2a5909348a8065442de6d67ad1cc3f7b860 /src/core/ext/filters/client_channel/client_channel_plugin.cc
parent84f94c17aa5ba19daa7cf001360719bdda7be407 (diff)
Convert LB policy API to C++.
Diffstat (limited to 'src/core/ext/filters/client_channel/client_channel_plugin.cc')
-rw-r--r--src/core/ext/filters/client_channel/client_channel_plugin.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/filters/client_channel/client_channel_plugin.cc b/src/core/ext/filters/client_channel/client_channel_plugin.cc
index 9172fa781c..3c3a97532f 100644
--- a/src/core/ext/filters/client_channel/client_channel_plugin.cc
+++ b/src/core/ext/filters/client_channel/client_channel_plugin.cc
@@ -63,7 +63,7 @@ static bool set_default_host_if_unset(grpc_channel_stack_builder* builder,
}
void grpc_client_channel_init(void) {
- grpc_lb_policy_registry_init();
+ grpc_core::LoadBalancingPolicyRegistry::Builder::InitRegistry();
grpc_core::ResolverRegistry::Builder::InitRegistry();
grpc_retry_throttle_map_init();
grpc_proxy_mapper_registry_init();
@@ -83,5 +83,5 @@ void grpc_client_channel_shutdown(void) {
grpc_proxy_mapper_registry_shutdown();
grpc_retry_throttle_map_shutdown();
grpc_core::ResolverRegistry::Builder::ShutdownRegistry();
- grpc_lb_policy_registry_shutdown();
+ grpc_core::LoadBalancingPolicyRegistry::Builder::ShutdownRegistry();
}