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

Unified Diff: chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.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/safe_media_metadata_parser.h
diff --git a/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h b/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h
index 1e5b8a7bc956176a15c0056fc8ebb335b25eb2fc..ac18b80bb8045ddb5f3f90431a1d9e1f2639aa65 100644
--- a/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h
+++ b/chrome/browser/media_galleries/fileapi/safe_media_metadata_parser.h
@@ -53,7 +53,7 @@ class SafeMediaMetadataParser : public content::UtilityProcessHostClient {
};
// Private because content::UtilityProcessHostClient is ref-counted.
- virtual ~SafeMediaMetadataParser();
+ ~SafeMediaMetadataParser() override;
// Launches the utility process. Must run on the IO thread.
void StartWorkOnIOThread(const DoneCallback& callback);
@@ -77,8 +77,8 @@ class SafeMediaMetadataParser : public content::UtilityProcessHostClient {
// UtilityProcessHostClient implementation.
// Runs on the IO thread.
- virtual void OnProcessCrashed(int exit_code) override;
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ void OnProcessCrashed(int exit_code) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
// All member variables are only accessed on the IO thread.
Profile* const profile_;

Powered by Google App Engine
This is Rietveld 408576698