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

Unified Diff: third_party/WebKit/Source/modules/fetch/BytesConsumer.h

Issue 2356693002: Remove BytesConsumer::read (Closed)
Patch Set: fix Created 4 years, 3 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/modules/fetch/BytesConsumer.h
diff --git a/third_party/WebKit/Source/modules/fetch/BytesConsumer.h b/third_party/WebKit/Source/modules/fetch/BytesConsumer.h
index 7388ba53c10fb222b5e77c45c5def36826c9b26f..6f73c0b76c20fd67b364a5fccc6addd68d54817c 100644
--- a/third_party/WebKit/Source/modules/fetch/BytesConsumer.h
+++ b/third_party/WebKit/Source/modules/fetch/BytesConsumer.h
@@ -74,17 +74,6 @@ public:
virtual ~BytesConsumer() {}
- // Reads data into |buffer| up to |size| bytes. The actual read size will
- // be stored in |*readSize|. This function cannot be called when a two-phase
- // read is in progress.
- // Returns Ok when readable.
- // Returns ShouldWait when it's waiting.
- // Returns Done when closed.
- // Returns Error when errored.
- // |buffer| can be null if |size| is 0.
- // |*readSize| will be set to 0 if not readable.
- virtual Result read(char* buffer, size_t /* size */, size_t* readSize) WARN_UNUSED_RESULT;
-
// Begins a two-phase read. On success, the function stores a buffer
// that contains the read data of length |*available| into |*buffer|.
// Returns Ok when readable.
@@ -106,7 +95,7 @@ public:
// Drains the data as a BlobDataHandle.
// When this function returns a non-null value, the returned blob handle
- // contains bytes that would be read through read, beginRead and
+ // contains bytes that would be read through beginRead and
// endRead functions without calling this function. In such a case, this
// object becomes closed.
// When this function returns null value, this function does nothing.
@@ -117,7 +106,7 @@ public:
// Drains the data as an EncodedFormData.
// When this function returns a non-null value, the returned form data
- // contains bytes that would be read through read, beginRead and
+ // contains bytes that would be read through beginRead and
// endRead functions without calling this function. In such a case, this
// object becomes closed.
// When this function returns null value, this function does nothing.

Powered by Google App Engine
This is Rietveld 408576698