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

Unified Diff: third_party/WebKit/Source/core/fileapi/FileReaderLoader.h

Issue 2568723006: Remove blink::Stream related code from FileReaderLoader (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fileapi/FileReaderLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/fileapi/FileReaderLoader.h
diff --git a/third_party/WebKit/Source/core/fileapi/FileReaderLoader.h b/third_party/WebKit/Source/core/fileapi/FileReaderLoader.h
index 4736f747eecf824548293eb0aeced6bbbbd901fe..96e64466dc7f199f091119c4c26d11362e0ec9ed 100644
--- a/third_party/WebKit/Source/core/fileapi/FileReaderLoader.h
+++ b/third_party/WebKit/Source/core/fileapi/FileReaderLoader.h
@@ -49,7 +49,6 @@ class BlobDataHandle;
class DOMArrayBuffer;
class ExecutionContext;
class FileReaderLoaderClient;
-class Stream;
class TextResourceDecoder;
class ThreadableLoader;
@@ -76,7 +75,6 @@ class CORE_EXPORT FileReaderLoader final : public ThreadableLoaderClient {
~FileReaderLoader() override;
void start(ExecutionContext*, PassRefPtr<BlobDataHandle>);
- void start(ExecutionContext*, const Stream&, unsigned readSize);
void cancel();
// ThreadableLoaderClient
@@ -113,9 +111,6 @@ class CORE_EXPORT FileReaderLoader final : public ThreadableLoaderClient {
private:
FileReaderLoader(ReadType, FileReaderLoaderClient*);
- void startInternal(ExecutionContext&,
- const Stream*,
- PassRefPtr<BlobDataHandle>);
void cleanup();
void failed(FileError::ErrorCode);
@@ -130,7 +125,6 @@ class CORE_EXPORT FileReaderLoader final : public ThreadableLoaderClient {
String m_dataType;
KURL m_urlForReading;
- bool m_urlForReadingIsStream;
Persistent<ThreadableLoader> m_loader;
std::unique_ptr<ArrayBufferBuilder> m_rawData;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fileapi/FileReaderLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698