Index: net/tools/balsa/balsa_visitor_interface.h |
diff --git a/net/tools/balsa/balsa_visitor_interface.h b/net/tools/balsa/balsa_visitor_interface.h |
index 1f24e6d565e2da3a5e9c15dea8ab4fba63ae73cc..810eac01e383ea529de17ee1c05d15a24e3b307e 100644 |
--- a/net/tools/balsa/balsa_visitor_interface.h |
+++ b/net/tools/balsa/balsa_visitor_interface.h |
@@ -30,7 +30,7 @@ class BalsaVisitorInterface { |
// Arguments: |
// input - contains the bytes available for read. |
// size - contains the number of bytes it is safe to read from input. |
- virtual void ProcessBodyInput(const char *input, size_t size) = 0; |
+ virtual void ProcessBodyInput(const char* input, size_t size) = 0; |
// Summary: |
// This is like ProcessBodyInput, but it will only include those parts of |
@@ -41,7 +41,7 @@ class BalsaVisitorInterface { |
// Arguments: |
// input - contains the bytes available for read. |
// size - contains the number of bytes it is safe to read from input. |
- virtual void ProcessBodyData(const char *input, size_t size) = 0; |
+ virtual void ProcessBodyData(const char* input, size_t size) = 0; |
// Summary: |
// BalsaFrame passes the raw header data through this function. This is |
@@ -49,7 +49,7 @@ class BalsaVisitorInterface { |
// Arguments: |
// input - contains the bytes available for read. |
// size - contains the number of bytes it is safe to read from input. |
- virtual void ProcessHeaderInput(const char *input, size_t size) = 0; |
+ virtual void ProcessHeaderInput(const char* input, size_t size) = 0; |
// Summary: |
// BalsaFrame passes the raw trailer data through this function. This is |
@@ -59,7 +59,7 @@ class BalsaVisitorInterface { |
// Arguments: |
// input - contains the bytes available for read. |
// size - contains the number of bytes it is safe to read from input. |
- virtual void ProcessTrailerInput(const char *input, size_t size) = 0; |
+ virtual void ProcessTrailerInput(const char* input, size_t size) = 0; |
// Summary: |
// Since the BalsaFrame already has to parse the headers in order to |
@@ -113,13 +113,13 @@ class BalsaVisitorInterface { |
// reason_input - pointer to the beginning of the reason string |
// reason_length - length of the reason string (i.e. the number |
// of bytes it is safe to read from reason_input) |
- virtual void ProcessResponseFirstLine(const char *line_input, |
+ virtual void ProcessResponseFirstLine(const char* line_input, |
size_t line_length, |
- const char *version_input, |
+ const char* version_input, |
size_t version_length, |
- const char *status_input, |
+ const char* status_input, |
size_t status_length, |
- const char *reason_input, |
+ const char* reason_input, |
size_t reason_length) = 0; |
// Called when a chunk length is parsed. |