aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/chttp2/frame_data.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-12 16:17:09 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-12 16:17:09 -0700
commitd20efd26e3a8448531d56050942ef66935311ef5 (patch)
tree26e52d719468e75dfc4ceeb441543ca241253204 /src/core/transport/chttp2/frame_data.h
parent3208e3922a246375f68969630941267e1a8930a3 (diff)
Progress on splitting things up
Diffstat (limited to 'src/core/transport/chttp2/frame_data.h')
-rw-r--r--src/core/transport/chttp2/frame_data.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/chttp2/frame_data.h b/src/core/transport/chttp2/frame_data.h
index 24e557accd..dbbb87fc01 100644
--- a/src/core/transport/chttp2/frame_data.h
+++ b/src/core/transport/chttp2/frame_data.h
@@ -72,7 +72,7 @@ grpc_chttp2_parse_error grpc_chttp2_data_parser_begin_frame(
/* handle a slice of a data frame - is_last indicates the last slice of a
frame */
grpc_chttp2_parse_error grpc_chttp2_data_parser_parse(
- void *parser, grpc_chttp2_parse_state *state, gpr_slice slice, int is_last);
+ void *parser, grpc_chttp2_transport_parsing *transport_parsing, grpc_chttp2_stream_parsing *stream_parsing, gpr_slice slice, int is_last);
/* create a slice with an empty data frame and is_last set */
gpr_slice grpc_chttp2_data_frame_create_empty_close(gpr_uint32 id);