Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Unified Diff: net/tools/balsa/buffer_interface.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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__
-

Powered by Google App Engine
This is Rietveld 408576698