[sanity] Fix master (#36822)
Closes #36822
COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/36822 from yashykt:FixSanity 3fddab5b57
PiperOrigin-RevId: 640617013
This commit is contained in:
parent
d110960d56
commit
05f4dc4103
|
|
@ -57,7 +57,8 @@ namespace grpc_core {
|
|||
|
||||
class ClientCall final
|
||||
: public Call,
|
||||
public DualRefCounted<ClientCall, NonPolymorphicRefCount, UnrefCallDestroy> {
|
||||
public DualRefCounted<ClientCall, NonPolymorphicRefCount,
|
||||
UnrefCallDestroy> {
|
||||
public:
|
||||
ClientCall(grpc_call* parent_call, uint32_t propagation_mask,
|
||||
grpc_completion_queue* cq, Slice path,
|
||||
|
|
|
|||
|
|
@ -15,6 +15,21 @@
|
|||
#ifndef GRPC_SRC_CORE_LIB_SURFACE_FILTER_STACK_CALL_H
|
||||
#define GRPC_SRC_CORE_LIB_SURFACE_FILTER_STACK_CALL_H
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <atomic>
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "absl/log/check.h"
|
||||
#include "absl/strings/str_cat.h"
|
||||
#include "absl/strings/str_join.h"
|
||||
#include "absl/strings/string_view.h"
|
||||
|
||||
#include <grpc/byte_buffer.h>
|
||||
#include <grpc/compression.h>
|
||||
#include <grpc/event_engine/event_engine.h>
|
||||
|
|
@ -29,15 +44,6 @@
|
|||
#include <grpc/support/log.h>
|
||||
#include <grpc/support/port_platform.h>
|
||||
#include <grpc/support/string_util.h>
|
||||
#include <inttypes.h>
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <atomic>
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "src/core/lib/channel/channel_stack.h"
|
||||
#include "src/core/lib/gprpp/ref_counted.h"
|
||||
|
|
@ -56,10 +62,6 @@
|
|||
#include "src/core/server/server_interface.h"
|
||||
#include "src/core/telemetry/call_tracer.h"
|
||||
#include "src/core/util/alloc.h"
|
||||
#include "absl/log/check.h"
|
||||
#include "absl/strings/str_cat.h"
|
||||
#include "absl/strings/str_join.h"
|
||||
#include "absl/strings/string_view.h"
|
||||
|
||||
namespace grpc_core {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue