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

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

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/FileReaderLoader.h ('k') | Source/core/fileapi/Stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReaderSync.h
diff --git a/Source/core/fileapi/FileReaderSync.h b/Source/core/fileapi/FileReaderSync.h
index 060633e738d4ac5cab243300a78f03936d3a14d1..227a5911609276680f5ef0cc55e78888bac69371 100644
--- a/Source/core/fileapi/FileReaderSync.h
+++ b/Source/core/fileapi/FileReaderSync.h
@@ -43,14 +43,14 @@ class ExceptionState;
class FileReaderLoader;
class ExecutionContext;
-class FileReaderSync : public RefCounted<FileReaderSync>, public ScriptWrappable {
+class FileReaderSync FINAL : public RefCounted<FileReaderSync>, public ScriptWrappable {
public:
static PassRefPtr<FileReaderSync> create()
{
return adoptRef(new FileReaderSync());
}
- virtual ~FileReaderSync() { }
+ ~FileReaderSync() { }
PassRefPtr<ArrayBuffer> readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&);
String readAsBinaryString(ExecutionContext*, Blob*, ExceptionState&);
« no previous file with comments | « Source/core/fileapi/FileReaderLoader.h ('k') | Source/core/fileapi/Stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698