aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/codegen
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-11-05 15:03:57 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2018-11-05 15:03:57 -0800
commit4cc3717e15e3499a734750dd7800cbc6541e31d9 (patch)
tree5c5fbd71876386a3348997437ceef5c5274052f8 /src/cpp/codegen
parent673887d6d2b1c69a771ef157bca6906cf7cb6c4a (diff)
move client_interceptor.cc from src/cpp/codegen to src/cpp/client
Diffstat (limited to 'src/cpp/codegen')
-rw-r--r--src/cpp/codegen/client_interceptor.cc34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/cpp/codegen/client_interceptor.cc b/src/cpp/codegen/client_interceptor.cc
deleted file mode 100644
index 3a5cac9830..0000000000
--- a/src/cpp/codegen/client_interceptor.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- *
- * Copyright 2018 gRPC authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-#include <grpcpp/impl/codegen/client_interceptor.h>
-
-namespace grpc {
-
-namespace internal {
-experimental::ClientInterceptorFactoryInterface*
- g_global_client_interceptor_factory = nullptr;
-}
-
-namespace experimental {
-void RegisterGlobalClientInterceptorFactory(
- ClientInterceptorFactoryInterface* factory) {
- internal::g_global_client_interceptor_factory = factory;
-}
-} // namespace experimental
-} // namespace grpc