Automated change: Fix sanity tests
diff --git a/src/core/ext/filters/http/client/http_client_filter.h b/src/core/ext/filters/http/client/http_client_filter.h index f66fc32..3146ea0 100644 --- a/src/core/ext/filters/http/client/http_client_filter.h +++ b/src/core/ext/filters/http/client/http_client_filter.h
@@ -20,13 +20,14 @@ #include <grpc/support/port_platform.h> +#include "absl/status/statusor.h" + #include "src/core/lib/channel/channel_args.h" #include "src/core/lib/channel/channel_fwd.h" #include "src/core/lib/channel/promise_based_filter.h" #include "src/core/lib/slice/slice.h" #include "src/core/lib/transport/metadata_batch.h" #include "src/core/lib/transport/transport.h" -#include "absl/status/statusor.h" namespace grpc_core {
diff --git a/src/core/lib/channel/promise_based_filter.h b/src/core/lib/channel/promise_based_filter.h index 99f86da..9f368d9 100644 --- a/src/core/lib/channel/promise_based_filter.h +++ b/src/core/lib/channel/promise_based_filter.h
@@ -19,10 +19,8 @@ // promise-style. Most of this will be removed once the promises conversion is // completed. -#include <grpc/event_engine/event_engine.h> -#include <grpc/grpc.h> -#include <grpc/support/log.h> #include <grpc/support/port_platform.h> + #include <stdint.h> #include <stdlib.h> @@ -33,6 +31,17 @@ #include <type_traits> #include <utility> +#include "absl/container/inlined_vector.h" +#include "absl/functional/function_ref.h" +#include "absl/meta/type_traits.h" +#include "absl/status/status.h" +#include "absl/strings/string_view.h" +#include "absl/types/optional.h" + +#include <grpc/event_engine/event_engine.h> +#include <grpc/grpc.h> +#include <grpc/support/log.h> + #include "src/core/lib/channel/call_finalization.h" #include "src/core/lib/channel/channel_args.h" #include "src/core/lib/channel/channel_fwd.h" @@ -58,12 +67,6 @@ #include "src/core/lib/transport/error_utils.h" #include "src/core/lib/transport/metadata_batch.h" #include "src/core/lib/transport/transport.h" -#include "absl/container/inlined_vector.h" -#include "absl/functional/function_ref.h" -#include "absl/meta/type_traits.h" -#include "absl/status/status.h" -#include "absl/strings/string_view.h" -#include "absl/types/optional.h" namespace grpc_core { @@ -221,7 +224,7 @@ template <typename Derived> struct FilterCallData { - FilterCallData(Derived* channel) : channel(channel) {} + explicit FilterCallData(Derived* channel) : channel(channel) {} GPR_NO_UNIQUE_ADDRESS typename Derived::Call call; GPR_NO_UNIQUE_ADDRESS typename TypeIfNeeded<Latch<ServerMetadataHandle>,