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

Unified Diff: chrome/browser/media_galleries/fileapi/supported_image_type_validator.h

Issue 660343006: Standardize usage of virtual/override/final in chrome/browser/media_galleries (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
diff --git a/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h b/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
index 6edbf17c7a1147079b1a0dcc8ebff9528fb3544e..28924e82df73f1a79a77fd098b2b4206d571a0e4 100644
--- a/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
+++ b/chrome/browser/media_galleries/fileapi/supported_image_type_validator.h
@@ -19,12 +19,11 @@ class MediaFileValidatorFactory;
// image files supported by Chrome.
class SupportedImageTypeValidator : public AVScanningFileValidator {
public:
- virtual ~SupportedImageTypeValidator();
+ ~SupportedImageTypeValidator() override;
static bool SupportsFileType(const base::FilePath& path);
- virtual void StartPreWriteValidation(
- const ResultCallback& result_callback) override;
+ void StartPreWriteValidation(const ResultCallback& result_callback) override;
private:
friend class MediaFileValidatorFactory;

Powered by Google App Engine
This is Rietveld 408576698