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

Unified Diff: Source/modules/imagebitmap/ImageBitmapFactories.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ 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
Index: Source/modules/imagebitmap/ImageBitmapFactories.h
diff --git a/Source/modules/imagebitmap/ImageBitmapFactories.h b/Source/modules/imagebitmap/ImageBitmapFactories.h
index 99420f3496ade4ec26887891ec6a293aada4f47c..f4a90c8e242df5bb973ce3c44bc2e21650bf3f23 100644
--- a/Source/modules/imagebitmap/ImageBitmapFactories.h
+++ b/Source/modules/imagebitmap/ImageBitmapFactories.h
@@ -55,7 +55,7 @@ class ImageBitmap;
class ImageData;
class ExecutionContext;
-class ImageBitmapFactories : public Supplement<DOMWindow>, public WorkerSupplement {
+class ImageBitmapFactories FINAL : public Supplement<DOMWindow>, public WorkerSupplement {
class ImageBitmapLoader;
@@ -80,7 +80,7 @@ public:
virtual ~ImageBitmapFactories() { }
private:
- class ImageBitmapLoader : public RefCounted<ImageBitmapLoader>, public FileReaderLoaderClient {
+ class ImageBitmapLoader FINAL : public RefCounted<ImageBitmapLoader>, public FileReaderLoaderClient {
public:
static PassRefPtr<ImageBitmapLoader> create(ImageBitmapFactories* factory, PassRefPtr<ScriptPromiseResolver> resolver, const IntRect& cropRect)
{
@@ -89,7 +89,7 @@ private:
void loadBlobAsync(ExecutionContext*, Blob*);
- ~ImageBitmapLoader() { }
+ virtual ~ImageBitmapLoader() { }
private:
ImageBitmapLoader(ImageBitmapFactories*, PassRefPtr<ScriptPromiseResolver>, const IntRect&);
« no previous file with comments | « Source/modules/geolocation/NavigatorGeolocation.h ('k') | Source/modules/indexeddb/DOMWindowIndexedDatabase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698