Index: net/tools/balsa/buffer_interface.h |
diff --git a/net/tools/balsa/buffer_interface.h b/net/tools/balsa/buffer_interface.h |
index 9c01a062b99797917e56440639287308616b3c3e..efb6ef0f3c87ebcdcea6068db1f188f962e17c48 100644 |
--- a/net/tools/balsa/buffer_interface.h |
+++ b/net/tools/balsa/buffer_interface.h |
@@ -9,7 +9,6 @@ namespace net { |
class BufferInterface { |
public: |
- |
// Returns the bytes which can be read from the buffer. There is no |
// guarantee that the bytes are contiguous. |
virtual int ReadableBytes() const = 0; |
@@ -55,7 +54,7 @@ class BufferInterface { |
// Args: |
// ptr - assigned a pointer to which we can write |
// size - the amount of data (in bytes) that it is safe to write to ptr. |
- virtual void GetWritablePtr(char **ptr, int* size) const = 0; |
+ virtual void GetWritablePtr(char** ptr, int* size) const = 0; |
// Summary: |
// Gets a pointer which can be read from |
@@ -66,7 +65,7 @@ class BufferInterface { |
// Args: |
// ptr - assigned a pointer from which we may read |
// size - the amount of data (in bytes) that it is safe to read |
- virtual void GetReadablePtr(char **ptr, int* size) const = 0; |
+ virtual void GetReadablePtr(char** ptr, int* size) const = 0; |
// Summary: |
// Reads bytes out of the buffer, and writes them into 'bytes'. |
@@ -118,4 +117,3 @@ class BufferInterface { |
} // namespace net |
#endif // NET_TOOLS_BALSA_BUFFER_INTERFACE__H__ |
- |