| 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_;
|
|
|