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

Unified Diff: third_party/WebKit/Source/core/xml/parser/SharedBufferReader.h

Issue 2389883005: reflow comments in core/xml* (Closed)
Patch Set: Created 4 years, 2 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: third_party/WebKit/Source/core/xml/parser/SharedBufferReader.h
diff --git a/third_party/WebKit/Source/core/xml/parser/SharedBufferReader.h b/third_party/WebKit/Source/core/xml/parser/SharedBufferReader.h
index 200b64c16836f073d15fc1163e575e83f7a51019..9c6e05128a8c81676b6a73845ba30c326f903445 100644
--- a/third_party/WebKit/Source/core/xml/parser/SharedBufferReader.h
+++ b/third_party/WebKit/Source/core/xml/parser/SharedBufferReader.h
@@ -40,7 +40,8 @@ namespace blink {
class SharedBuffer;
-// Allows transfer of data in multiple chunks from a SharedBuffer to a provided buffer.
+// Allows transfer of data in multiple chunks from a SharedBuffer to a provided
+// buffer.
class CORE_EXPORT SharedBufferReader {
USING_FAST_MALLOC(SharedBufferReader);
@@ -49,8 +50,10 @@ class CORE_EXPORT SharedBufferReader {
~SharedBufferReader();
- // Returns the number of bytes that were read (i.e. written to |outputBuffer|).
- // TODO(junov): use size_t instead of int. Until then, readData uses safeCast internally.
+ // Returns the number of bytes that were read (i.e. written to
+ // |outputBuffer|).
+ // TODO(junov): use size_t instead of int. Until then, readData uses safeCast
+ // internally.
int readData(char* outputBuffer, int askedToRead);
private:

Powered by Google App Engine
This is Rietveld 408576698