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

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

Issue 2491363003: Make FileReader.abort() (synchronously) follow the spec. (Closed)
Patch Set: Created 4 years, 1 month 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/fileapi/FileReader.h
diff --git a/third_party/WebKit/Source/core/fileapi/FileReader.h b/third_party/WebKit/Source/core/fileapi/FileReader.h
index 72d71cb44acb89f6b7e4cc189b46aebb487d54e0..ce98206101bd1dfc464298eba95801d6aed76c26 100644
--- a/third_party/WebKit/Source/core/fileapi/FileReader.h
+++ b/third_party/WebKit/Source/core/fileapi/FileReader.h
@@ -70,8 +70,6 @@ class CORE_EXPORT FileReader final : public EventTargetWithInlineData,
void readAsDataURL(Blob*, ExceptionState&);
void abort();
- void doAbort();
-
ReadyState getReadyState() const { return m_state; }
DOMException* error() { return m_error; }
void result(StringOrArrayBuffer& resultAttribute) const;

Powered by Google App Engine
This is Rietveld 408576698