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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
« no previous file with comments | « Source/core/fileapi/FileReader.h ('k') | Source/core/frame/Console.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReaderLoader.h
diff --git a/Source/core/fileapi/FileReaderLoader.h b/Source/core/fileapi/FileReaderLoader.h
index 5176b4c74c5dc21290548325a2780143d5a95789..565a06122597ad66f62b4da758e0ee04a1948cfa 100644
--- a/Source/core/fileapi/FileReaderLoader.h
+++ b/Source/core/fileapi/FileReaderLoader.h
@@ -69,17 +69,17 @@ public:
}
FileReaderLoader(ReadType, FileReaderLoaderClient*);
- virtual ~FileReaderLoader();
+ ~FileReaderLoader() override;
void start(ExecutionContext*, PassRefPtr<BlobDataHandle>);
void start(ExecutionContext*, const Stream&, unsigned readSize);
void cancel();
// ThreadableLoaderClient
- virtual void didReceiveResponse(unsigned long, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
- virtual void didReceiveData(const char*, unsigned) override;
- virtual void didFinishLoading(unsigned long, double) override;
- virtual void didFail(const ResourceError&) override;
+ void didReceiveResponse(unsigned long, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
+ void didReceiveData(const char*, unsigned) override;
+ void didFinishLoading(unsigned long, double) override;
+ void didFail(const ResourceError&) override;
String stringResult();
PassRefPtr<DOMArrayBuffer> arrayBufferResult() const;
« no previous file with comments | « Source/core/fileapi/FileReader.h ('k') | Source/core/frame/Console.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698