| Index: chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
|
| diff --git a/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h b/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
|
| index 91a906951387d614b93ae17f4ee929f1b4c27cbc..4d940e16ba9111034c9e83a0e9e94200a889188a 100644
|
| --- a/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
|
| +++ b/chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h
|
| @@ -59,7 +59,7 @@ class SafeIAppsLibraryParser : public content::UtilityProcessHostClient {
|
| };
|
|
|
| // content::UtilityProcessHostClient is ref-counted.
|
| - virtual ~SafeIAppsLibraryParser();
|
| + ~SafeIAppsLibraryParser() override;
|
|
|
| // Posts a task to start the XML parsing in the utility process.
|
| void Start();
|
| @@ -91,8 +91,8 @@ class SafeIAppsLibraryParser : 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;
|
|
|
| base::FilePath library_file_path_;
|
|
|
|
|