Fix build error due to remaining ::grpc_impl references

pull/22247/head
Karthik Ravi Shankar 5 years ago
parent 4c75b5c06b
commit 162d3d76cb
  1. 8
      include/grpcpp/opencensus.h

@ -21,6 +21,10 @@
#include "opencensus/trace/span.h"
namespace grpc_impl {
class ServerContext;
}
namespace grpc {
// These symbols in this file will not be included in the binary unless
// grpc_opencensus_plugin build target was added as a dependency. At the moment
@ -38,10 +42,8 @@ void RegisterOpenCensusPlugin();
// ViewDescriptors below.
void RegisterOpenCensusViewsForExport();
class ServerContext;
// Returns the tracing Span for the current RPC.
::opencensus::trace::Span GetSpanFromServerContext(ServerContext* context);
::opencensus::trace::Span GetSpanFromServerContext(::grpc_impl::ServerContext* context);
} // namespace grpc

Loading…
Cancel
Save